Date: Sat, 12 Jul 2014 05:44:16 +0000 (UTC) From: Adrian Chadd <adrian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r268560 - head/sys/netinet6 Message-ID: <201407120544.s6C5iGRG049144@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: adrian Date: Sat Jul 12 05:44:16 2014 New Revision: 268560 URL: http://svnweb.freebsd.org/changeset/base/268560 Log: Add the IPv6 versions of the multi-bind, hash/hash type and RSS options. Modified: head/sys/netinet6/in6.h Modified: head/sys/netinet6/in6.h ============================================================================== --- head/sys/netinet6/in6.h Sat Jul 12 05:43:43 2014 (r268559) +++ head/sys/netinet6/in6.h Sat Jul 12 05:44:16 2014 (r268560) @@ -481,6 +481,12 @@ struct route_in6 { #define IPV6_BINDANY 64 /* bool: allow bind to any address */ +#define IPV6_BINDMULTI 65 /* bool; allow multibind to same addr/port */ +#define IPV6_RSS_LISTEN_BUCKET 66 /* int; set RSS listen bucket */ +#define IPV6_FLOWID 67 /* int; flowid of given socket */ +#define IPV6_FLOWTYPE 68 /* int; flowtype of given socket */ +#define IPV6_RSSBUCKETID 69 /* int; RSS bucket ID of given socket */ + /* * The following option is private; do not use it from user applications. * It is deliberately defined to the same value as IP_MSFILTER.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407120544.s6C5iGRG049144>