diff options
author | dg <dg@FreeBSD.org> | 1995-06-28 05:13:02 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-06-28 05:13:02 +0000 |
commit | 2bc3a773d63a6a1193ae7a6c8f5b5a9379ae87b5 (patch) | |
tree | f6c84dda35db7950ea86747d84de13e413ebcd23 /sys | |
parent | 6c5617ad78f38f74dac5eb5e5afc64838839224d (diff) | |
download | FreeBSD-src-2bc3a773d63a6a1193ae7a6c8f5b5a9379ae87b5.zip FreeBSD-src-2bc3a773d63a6a1193ae7a6c8f5b5a9379ae87b5.tar.gz |
Added function prototypes for ip_rsvp_vif_init, ip_rsvp_vif_done, and
ip_rsvp_force_done.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_var.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/netinet/ip_var.h b/sys/netinet/ip_var.h index 3bfd8ff..a210ab7 100644 --- a/sys/netinet/ip_var.h +++ b/sys/netinet/ip_var.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)ip_var.h 8.1 (Berkeley) 6/10/93 - * $Id: ip_var.h,v 1.9 1995/03/16 18:15:01 bde Exp $ + * $Id: ip_var.h,v 1.11 1995/06/13 17:51:15 wollman Exp $ */ #ifndef _NETINET_IP_VAR_H_ @@ -197,6 +197,9 @@ int rip_usrreq __P((struct socket *, int, struct mbuf *, struct mbuf *, struct mbuf *)); int ip_rsvp_init __P((struct socket *)); int ip_rsvp_done __P((void)); +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 *)); void rip_ip_input __P((struct mbuf *mm, register struct socket *ip_mrouter, struct sockaddr *src)); |