summaryrefslogtreecommitdiff
path: root/sys/net
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2012-08-21 19:50:40 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2012-08-21 19:50:40 +0000
commitcd4341a106f5622841eca0e9637375cc8833778b (patch)
tree70f2dd750f2a8339d458be88337c92b0b22ed6ab /sys/net
parent3f292aafd4273f48c8dfde60d3ebbfdd7cfa46ad (diff)
Reverse the name and meaning of the IFXF_INET6_PRIVACY interface
flag. It is now called IFXF_INET6_NOPRIVACY. So IPv6 privacy addresses are on by default without resetting the flag during ifconfig down/up. OK stsp@, sperreault@ (who wrote the same diff)
Diffstat (limited to 'sys/net')
-rw-r--r--sys/net/if.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/if.h b/sys/net/if.h
index 9a1fc0fca5c..3f0bd6b7341 100644
--- a/sys/net/if.h
+++ b/sys/net/if.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if.h,v 1.131 2011/12/02 03:15:31 haesbaert Exp $ */
+/* $OpenBSD: if.h,v 1.132 2012/08/21 19:50:39 bluhm Exp $ */
/* $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $ */
/*
@@ -337,7 +337,7 @@ struct ifnet { /* and the entries */
#define IFXF_TXREADY 0x1 /* interface is ready to tx */
#define IFXF_NOINET6 0x2 /* don't do inet6 */
-#define IFXF_INET6_PRIVACY 0x4 /* autoconf privacy extension */
+#define IFXF_INET6_NOPRIVACY 0x4 /* don't autoconf privacy */
#define IFXF_MPLS 0x8 /* supports MPLS */
#define IFXF_WOL 0x10 /* wake on lan enabled */