diff options
author | 2000-01-18 19:06:07 +0000 | |
---|---|---|
committer | 2000-01-18 19:06:07 +0000 | |
commit | ee91b59bbc6a0a0dac0ca64675c68590cfe60dab (patch) | |
tree | b81dbd69147a70a0e9105efa3ac3a35388271957 | |
parent | Fix a pasto in the last commit. The genesis of this bug is actually (diff) | |
download | wireguard-openbsd-ee91b59bbc6a0a0dac0ca64675c68590cfe60dab.tar.xz wireguard-openbsd-ee91b59bbc6a0a0dac0ca64675c68590cfe60dab.zip |
Bump IPPROTO_MAX to include IPPROTO_MOBILE and IPPROTO_ETHERIP.
-rw-r--r-- | sys/netinet/in.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netinet/in.h b/sys/netinet/in.h index fe5af5aa5f9..1ea1358fc51 100644 --- a/sys/netinet/in.h +++ b/sys/netinet/in.h @@ -1,4 +1,4 @@ -/* $OpenBSD: in.h,v 1.34 2000/01/11 01:13:49 angelos Exp $ */ +/* $OpenBSD: in.h,v 1.35 2000/01/18 19:06:07 angelos Exp $ */ /* $NetBSD: in.h,v 1.20 1996/02/13 23:41:47 christos Exp $ */ /* @@ -311,7 +311,7 @@ struct ip_mreq { * Third level is protocol number. * Fourth level is desired variable within that protocol. */ -#define IPPROTO_MAXID (IPPROTO_AH + 1) /* don't list to IPPROTO_MAX */ +#define IPPROTO_MAXID (IPPROTO_ETHERIP + 1) /* don't list to IPPROTO_MAX */ #define CTL_IPPROTO_NAMES { \ { "ip", CTLTYPE_NODE }, \ |