On 01/05/2018 20:21, Roy Marples wrote:
Another patch. This time to handle a reported overflow listening to ND6.
This one actually works Index: sys/netinet6/in6_proto.c =================================================================== RCS file: /cvsroot/src/sys/netinet6/in6_proto.c,v retrieving revision 1.122 diff -u -p -r1.122 in6_proto.c --- sys/netinet6/in6_proto.c 15 Mar 2018 08:15:21 -0000 1.122 +++ sys/netinet6/in6_proto.c 1 May 2018 19:33:42 -0000 @@ -597,7 +597,7 @@ int pmtu_expire = 60*10; * Nominal space allocated to a raw ip socket. */ #define RIPV6SNDQ 8192 -#define RIPV6RCVQ 8192 +#define RIPV6RCVQ 16384 u_long rip6_sendspace = RIPV6SNDQ; u_long rip6_recvspace = RIPV6RCVQ;
