diff options
author | wollman <wollman@FreeBSD.org> | 1996-04-26 18:30:52 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1996-04-26 18:30:52 +0000 |
commit | 8fcdf08026a761effa9bbc7d6fb5062ca3c822d0 (patch) | |
tree | 97fccb4f3efc81724960c8732837001b1f389663 /sys | |
parent | 63a39b133febd79dac1e294c7519346665cf54ec (diff) | |
download | FreeBSD-src-8fcdf08026a761effa9bbc7d6fb5062ca3c822d0.zip FreeBSD-src-8fcdf08026a761effa9bbc7d6fb5062ca3c822d0.tar.gz |
Delete #if 0 block containing unused definitions for ARPANET/DDN IMP
and HYPERchannel link layers.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/in_proto.c | 48 |
1 files changed, 1 insertions, 47 deletions
diff --git a/sys/netinet/in_proto.c b/sys/netinet/in_proto.c index ded6e48..0f818ab 100644 --- a/sys/netinet/in_proto.c +++ b/sys/netinet/in_proto.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)in_proto.c 8.2 (Berkeley) 2/9/95 - * $Id: in_proto.c,v 1.27 1996/03/26 19:16:43 fenner Exp $ + * $Id: in_proto.c,v 1.28 1996/04/18 15:41:51 wollman Exp $ */ #include <sys/param.h> @@ -188,49 +188,3 @@ SYSCTL_NODE(_net_inet, IPPROTO_UDP, udp, CTLFLAG_RW, 0, "UDP"); SYSCTL_NODE(_net_inet, IPPROTO_TCP, tcp, CTLFLAG_RW, 0, "TCP"); SYSCTL_NODE(_net_inet, IPPROTO_IGMP, igmp, CTLFLAG_RW, 0, "IGMP"); -#if 0 -#include "imp.h" -#if NIMP > 0 -extern struct domain impdomain; -int rimp_output(), hostslowtimo(); - -struct protosw impsw[] = { -{ SOCK_RAW, &impdomain, 0, PR_ATOMIC|PR_ADDR, - 0, rimp_output, 0, 0, - rip_usrreq, - 0, 0, hostslowtimo, 0, -}, -}; - -struct domain impdomain = - { AF_IMPLINK, "imp", 0, 0, 0, - impsw, &impsw[sizeof (impsw)/sizeof(impsw[0])] }; - -DOMAIN_SET(imp); - -#endif -#endif - -#if 0 -#include "hy.h" -#if NHY > 0 -/* - * HYPERchannel protocol family: raw interface. - */ -int rhy_output(); -extern struct domain hydomain; - -struct protosw hysw[] = { -{ SOCK_RAW, &hydomain, 0, PR_ATOMIC|PR_ADDR, - 0, rhy_output, 0, 0, - rip_usrreq, - 0, 0, 0, 0, -}, -}; - -struct domain hydomain = - { AF_HYLINK, "hy", 0, 0, 0, hysw, &hysw[sizeof (hysw)/sizeof(hysw[0])] }; - -DOMAIN_SET(hy); -#endif -#endif |