From owner-svn-src-all@FreeBSD.ORG Sat Jul 12 05:44:16 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DEBC9E13; Sat, 12 Jul 2014 05:44:16 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC6A420E7; Sat, 12 Jul 2014 05:44:16 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6C5iGhp049145; Sat, 12 Jul 2014 05:44:16 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6C5iGRG049144; Sat, 12 Jul 2014 05:44:16 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201407120544.s6C5iGRG049144@svn.freebsd.org> From: Adrian Chadd Date: Sat, 12 Jul 2014 05:44:16 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r268560 - head/sys/netinet6 X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 12 Jul 2014 05:44:17 -0000 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.