diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2008-11-25 12:11:46 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2008-11-25 12:11:46 +0000 |
commit | d773af5009dd3bda5ac659f8a49a399a950cfbe9 (patch) | |
tree | 3b01d77ed6d6268de15cb7118078a19d547ad6cf /sys/netinet6/in6.h | |
parent | 6e975ccd45f058f67d5fc4be2f54b49f1e378170 (diff) |
delay /etc/netstart until IPv6-DAD (dup-address-detection) is completed.
ok fries, hshoexer, claudio
Diffstat (limited to 'sys/netinet6/in6.h')
-rw-r--r-- | sys/netinet6/in6.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/netinet6/in6.h b/sys/netinet6/in6.h index 33b0a2ee1a1..7cab2a6b4a0 100644 --- a/sys/netinet6/in6.h +++ b/sys/netinet6/in6.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in6.h,v 1.46 2008/06/11 06:30:36 mcbride Exp $ */ +/* $OpenBSD: in6.h,v 1.47 2008/11/25 12:11:44 markus Exp $ */ /* $KAME: in6.h,v 1.83 2001/03/29 02:55:07 jinmei Exp $ */ /* @@ -618,7 +618,8 @@ struct ip6_mtuinfo { #define IPV6CTL_MAXIFPREFIXES 46 #define IPV6CTL_MAXIFDEFROUTERS 47 #define IPV6CTL_MAXDYNROUTES 48 -#define IPV6CTL_MAXID 49 +#define IPV6CTL_DAD_PENDING 49 +#define IPV6CTL_MAXID 50 /* New entries should be added here from current IPV6CTL_MAXID value. */ /* to define items, should talk with KAME guys first, for *BSD compatibility */ @@ -673,6 +674,7 @@ struct ip6_mtuinfo { { "maxifprefixes", CTLTYPE_INT }, \ { "maxifdefrouters", CTLTYPE_INT }, \ { "maxdynroutes", CTLTYPE_INT }, \ + { "dad_pending", CTLTYPE_INT }, \ } #define IPV6CTL_VARS { \ @@ -725,6 +727,7 @@ struct ip6_mtuinfo { &ip6_maxifprefixes, \ &ip6_maxifdefrouters, \ &ip6_maxdynroutes, \ + NULL, \ } #endif /* __BSD_VISIBLE */ |