diff options
Diffstat (limited to 'sys/netinet/in_gif.h')
-rw-r--r-- | sys/netinet/in_gif.h | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/sys/netinet/in_gif.h b/sys/netinet/in_gif.h index 39d1aba..de03c6e 100644 --- a/sys/netinet/in_gif.h +++ b/sys/netinet/in_gif.h @@ -1,3 +1,6 @@ +/* $FreeBSD$ */ +/* $KAME: in_gif.h,v 1.5 2000/04/14 08:36:02 itojun Exp $ */ + /* * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project. * All rights reserved. @@ -25,23 +28,17 @@ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. - * - * $FreeBSD$ */ #ifndef _NETINET_IN_GIF_H_ -#define _NETINET_IN_GIF_H_ +#define _NETINET_IN_GIF_H_ -#define GIF_TTL 30 +#define GIF_TTL 30 extern int ip_gif_ttl; -struct mbuf; -struct ifnet; -struct rtentry; - -void in_gif_input __P((struct mbuf *, int off, int proto)); -int in_gif_output __P((struct ifnet *, int, struct mbuf *, - struct rtentry *)); +void in_gif_input __P((struct mbuf *, ...)); +int in_gif_output __P((struct ifnet *, int, struct mbuf *, struct rtentry *)); +int gif_encapcheck4 __P((const struct mbuf *, int, int, void *)); #endif /*_NETINET_IN_GIF_H_*/ |