diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2011-05-02 13:48:39 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2011-05-02 13:48:39 +0000 |
commit | 16f4a4e2fc0289ea00379fbe31df1aae90903841 (patch) | |
tree | 77bd290a3d1a78b3179469cd39aa684ba668c042 /sys/netinet6 | |
parent | 927653333b09f8088a9327effc4daa5f35a34bc9 (diff) |
recognize SO_RTABLE socket option at the SOL_SOCKET level;
discussed with and ok claudio
Diffstat (limited to 'sys/netinet6')
-rw-r--r-- | sys/netinet6/in6.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet6/in6.h b/sys/netinet6/in6.h index 79e3d236a3b..d4cef9a013b 100644 --- a/sys/netinet6/in6.h +++ b/sys/netinet6/in6.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in6.h,v 1.52 2010/09/23 04:45:15 yasuoka Exp $ */ +/* $OpenBSD: in6.h,v 1.53 2011/05/02 13:48:38 mikeb Exp $ */ /* $KAME: in6.h,v 1.83 2001/03/29 02:55:07 jinmei Exp $ */ /* @@ -479,6 +479,8 @@ struct route_in6 { #define IPV6_DONTFRAG 62 /* bool; disable IPv6 fragmentation */ #define IPV6_PIPEX 63 /* bool; using PIPEX */ +#define IPV6_RTABLE 0x1021 /* int; routing table, see SO_RTABLE */ + /* to define items, should talk with KAME guys first, for *BSD compatibility */ #define IPV6_RTHDR_LOOSE 0 /* this hop need not be a neighbor. XXX old spec */ |