Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/man/man4 Sync route flags from net/route.h



details:   https://anonhg.NetBSD.org/src/rev/a8d3e0f7fb20
branches:  trunk
changeset: 806437:a8d3e0f7fb20
user:      roy <roy%NetBSD.org@localhost>
date:      Tue Feb 24 19:11:13 2015 +0000

description:
Sync route flags from net/route.h

diffstat:

 share/man/man4/route.4 |  38 ++++++++++++++++++++------------------
 1 files changed, 20 insertions(+), 18 deletions(-)

diffs (59 lines):

diff -r f2b5c3d8c650 -r a8d3e0f7fb20 share/man/man4/route.4
--- a/share/man/man4/route.4    Tue Feb 24 18:15:29 2015 +0000
+++ b/share/man/man4/route.4    Tue Feb 24 19:11:13 2015 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: route.4,v 1.22 2013/05/24 14:40:18 njoly Exp $
+.\"    $NetBSD: route.4,v 1.23 2015/02/24 19:11:13 roy Exp $
 .\"
 .\" Copyright (c) 1990, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -29,7 +29,7 @@
 .\"
 .\"     @(#)route.4    8.6 (Berkeley) 4/19/94
 .\"
-.Dd May 21, 2013
+.Dd February 24, 2015
 .Dt ROUTE 4
 .Os
 .Sh NAME
@@ -292,22 +292,24 @@
 .Pp
 Flags include the values:
 .Bd -literal
-#define        RTF_UP        0x1      /* route usable */
-#define        RTF_GATEWAY   0x2      /* destination is a gateway */
-#define        RTF_HOST      0x4      /* host entry (net otherwise) */
-#define        RTF_REJECT    0x8      /* host or net unreachable */
-#define        RTF_DYNAMIC   0x10     /* created dynamically (by redirect) */
-#define        RTF_MODIFIED  0x20     /* modified dynamically (by redirect) */
-#define        RTF_DONE      0x40     /* message confirmed */
-#define        RTF_MASK      0x80     /* subnet mask present */
-#define        RTF_CLONING   0x100    /* generate new routes on use */
-#define        RTF_XRESOLVE  0x200    /* external daemon resolves name */
-#define        RTF_LLINFO    0x400    /* generated by ARP or ESIS */
-#define        RTF_STATIC    0x800    /* manually added */
-#define        RTF_BLACKHOLE 0x1000   /* just discard pkts (during updates) */
-#define        RTF_CLONED    0x2000   /* this is a cloned route */
-#define        RTF_PROTO2    0x4000   /* protocol specific routing flag */
-#define        RTF_PROTO1    0x8000   /* protocol specific routing flag */
+#define        RTF_UP        0x1       /* route usable */
+#define        RTF_GATEWAY   0x2       /* destination is a gateway */
+#define        RTF_HOST      0x4       /* host entry (net otherwise) */
+#define        RTF_REJECT    0x8       /* host or net unreachable */
+#define        RTF_DYNAMIC   0x10      /* created dynamically (by redirect) */
+#define        RTF_MODIFIED  0x20      /* modified dynamically (by redirect) */
+#define        RTF_DONE      0x40      /* message confirmed */
+#define        RTF_MASK      0x80      /* subnet mask present */
+#define        RTF_CLONING   0x100     /* generate new routes on use */
+#define        RTF_XRESOLVE  0x200     /* external daemon resolves name */
+#define        RTF_LLINFO    0x400     /* generated by ARP or NDP */
+#define        RTF_STATIC    0x800     /* manually added */
+#define        RTF_BLACKHOLE 0x1000    /* just discard pkts (during updates) */
+#define        RTF_CLONED    0x2000    /* this is a cloned route */
+#define        RTF_PROTO2    0x4000    /* protocol specific routing flag */
+#define        RTF_PROTO1    0x8000    /* protocol specific routing flag */
+#define        RTF_SRC       0x10000   /* route has fixed source address */
+#define        RTF_ANNOUNCE  0x20000   /* announce new ARP or NDP entry */
 .Ed
 .Pp
 Specifiers for metric values in rmx_locks and rtm_inits are:



Home | Main Index | Thread Index | Old Index