diff options
author | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-09 07:03:46 +0000 |
---|---|---|
committer | Angelos D. Keromytis <angelos@cvs.openbsd.org> | 2001-06-09 07:03:46 +0000 |
commit | 29cf16ac90acaf062d15901509e3a67ca4ef738e (patch) | |
tree | ed4d67d6d710a9f74690b2ce796fdcc9b072d559 /sys/netinet/ip_mroute.h | |
parent | 704a4b23790dbd9ab4869662980b908dfba2a41f (diff) |
Inclusion protection.
Diffstat (limited to 'sys/netinet/ip_mroute.h')
-rw-r--r-- | sys/netinet/ip_mroute.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/sys/netinet/ip_mroute.h b/sys/netinet/ip_mroute.h index 594e1804adc..a315cd025d6 100644 --- a/sys/netinet/ip_mroute.h +++ b/sys/netinet/ip_mroute.h @@ -1,6 +1,9 @@ -/* $OpenBSD: ip_mroute.h,v 1.6 2000/01/21 03:15:05 angelos Exp $ */ +/* $OpenBSD: ip_mroute.h,v 1.7 2001/06/09 07:03:42 angelos Exp $ */ /* $NetBSD: ip_mroute.h,v 1.10 1996/02/13 23:42:55 christos Exp $ */ +#ifndef _NETINET_IP_MROUTE_H_ +#define _NETINET_IP_MROUTE_H_ + /* * Definitions for IP multicast forwarding. * @@ -222,14 +225,12 @@ int legal_vif_num __P((int)); int ip_rsvp_vif_init __P((struct socket *, struct mbuf *)); int ip_rsvp_vif_done __P((struct socket *, struct mbuf *)); void ip_rsvp_force_done __P((struct socket *)); -#if 0 -void rsvp_input __P((struct mbuf *, struct ifnet *)); -#else void rsvp_input __P((struct mbuf *, int, int)); -#endif #else int ip_mforward __P((struct mbuf *, struct ifnet *)); -#endif +#endif /* RSVP_ISI */ + void ipip_mroute_input __P((struct mbuf *, ...)); #endif /* _KERNEL */ +#endif /* _NETINET_IP_MROUTE_H_ */ |