svn commit: r268560 - head/sys/netinet6

Adrian Chadd adrian at FreeBSD.org
Sat Jul 12 05:44:17 UTC 2014


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.


More information about the svn-src-head mailing list