Source-Changes-HG archive

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

[src/trunk]: src/sys/netinet Allocate sysctl oid for ipv4 sysctl node "ifq", ...



details:   https://anonhg.NetBSD.org/src/rev/41ef716f6fb5
branches:  trunk
changeset: 555179:41ef716f6fb5
user:      jonathan <jonathan%NetBSD.org@localhost>
date:      Mon Nov 10 20:50:29 2003 +0000

description:
Allocate sysctl oid for ipv4 sysctl node "ifq", define symbolic name, and
bump IPCTL_MAXID. (Should have been committed with other ifq sysctl changes).

diffstat:

 sys/netinet/in.h |  6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diffs (27 lines):

diff -r 9fbc2448ae3c -r 41ef716f6fb5 sys/netinet/in.h
--- a/sys/netinet/in.h  Mon Nov 10 20:03:29 2003 +0000
+++ b/sys/netinet/in.h  Mon Nov 10 20:50:29 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: in.h,v 1.62 2003/08/07 16:33:09 agc Exp $      */
+/*     $NetBSD: in.h,v 1.63 2003/11/10 20:50:29 jonathan Exp $ */
 
 /*
  * Copyright (c) 1982, 1986, 1990, 1993
@@ -380,7 +380,8 @@
 #define        IPCTL_MAXFRAGPACKETS   18       /* max packets reassembly queue */
 #define        IPCTL_GRE_TTL          19       /* default TTL for gre encap packet */
 #define        IPCTL_CHECKINTERFACE   20       /* drop pkts in from 'wrong' iface */
-#define        IPCTL_MAXID            21
+#define        IPCTL_IFQ              21       /* ipintrq node */
+#define        IPCTL_MAXID            22
 
 #define        IPCTL_NAMES { \
        { 0, 0 }, \
@@ -404,6 +405,7 @@
        { "maxfragpackets", CTLTYPE_INT }, \
        { "grettl", CTLTYPE_INT }, \
        { "checkinterface", CTLTYPE_INT }, \
+       { "ifq", CTLTYPE_NODE }, \
 }
 #endif /* _NETBSD_SOURCE */
 



Home | Main Index | Thread Index | Old Index