diff options
author | 1996-04-24 06:00:43 +0000 | |
---|---|---|
committer | 1996-04-24 06:00:43 +0000 | |
commit | aa3f96ffcaacd0970a545e60fc7d9b75a9655992 (patch) | |
tree | 026c867265df28e0029c546d8fcdd653e0446b36 /sys | |
parent | Fix copyrights, comments, etc. (diff) | |
download | wireguard-openbsd-aa3f96ffcaacd0970a545e60fc7d9b75a9655992.tar.xz wireguard-openbsd-aa3f96ffcaacd0970a545e60fc7d9b75a9655992.zip |
Add IPXIP entry, to not to get cvs confused in the future.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/in_proto.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c index 74a66e49e04..28cca9a2fae 100644 --- a/sys/netinet/in_proto.c +++ b/sys/netinet/in_proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: in_proto.c,v 1.3 1996/03/04 08:21:53 niklas Exp $ */ +/* $OpenBSD: in_proto.c,v 1.4 1996/04/24 06:00:43 mickey Exp $ */ /* $NetBSD: in_proto.c,v 1.14 1996/02/18 18:58:32 christos Exp $ */ /* @@ -71,6 +71,11 @@ #include <netns/idp_var.h> #endif /* NSIP */ +#ifdef IPXIP +#include <netipx/ipx.h> +#include <netipx/ipx_ip.h> +#endif /* NSIP */ + #ifdef TPIP #include <netiso/tp_param.h> #include <netiso/tp_var.h> @@ -139,6 +144,13 @@ struct protosw inetsw[] = { eonprotoinit, 0, 0, 0, }, #endif /* EON */ +#ifdef IPXIP +{ SOCK_RAW, &inetdomain, IPPROTO_IDP, PR_ATOMIC|PR_ADDR, + ipxip_input, rip_output, ipxip_ctlinput, 0, + rip_usrreq, + ipxipprotoinit,0, 0, 0, +}, +#endif /* NSIP */ #ifdef NSIP { SOCK_RAW, &inetdomain, IPPROTO_IDP, PR_ATOMIC|PR_ADDR, idpip_input, rip_output, nsip_ctlinput, 0, |