Module Name:    src
Committed By:   christos
Date:           Tue Sep 13 00:19:28 UTC 2016

Modified Files:
        src/sys/netinet: in_var.h

Log Message:
add bits for address flags


To generate a diff of this commit:
cvs rdiff -u -r1.79 -r1.80 src/sys/netinet/in_var.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/netinet/in_var.h
diff -u src/sys/netinet/in_var.h:1.79 src/sys/netinet/in_var.h:1.80
--- src/sys/netinet/in_var.h:1.79	Sun Jul 31 23:15:30 2016
+++ src/sys/netinet/in_var.h	Mon Sep 12 20:19:28 2016
@@ -1,4 +1,4 @@
-/*	$NetBSD: in_var.h,v 1.79 2016/08/01 03:15:30 ozaki-r Exp $	*/
+/*	$NetBSD: in_var.h,v 1.80 2016/09/13 00:19:28 christos Exp $	*/
 
 /*-
  * Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -71,6 +71,9 @@
 #define IN_IFF_DETACHED		0x04	/* may be detached from the link */
 #define IN_IFF_TRYTENTATIVE	0x08	/* intent to try DAD */
 
+#define IN_IFFBITS \       
+    "\020\1TENTATIVE\2DUPLICATED\3DETACHED\4TRYTENTATIVE"
+
 /* do not input/output */
 #define IN_IFF_NOTREADY \
     (IN_IFF_TRYTENTATIVE | IN_IFF_TENTATIVE | IN_IFF_DUPLICATED)

Reply via email to