diff options
author | Peter Wemm <peter@FreeBSD.org> | 1997-11-16 05:55:52 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 1997-11-16 05:55:52 +0000 |
commit | 52aef1787c0595837b11765452444e18c4687baa (patch) | |
tree | c8cdc77281d6ea71cae48ee9fcc2e4ae8430414f /sys/netinet/ip_frag.h | |
parent | e10102a12a980dc84a95a4a831769c1058c946c0 (diff) | |
download | src-52aef1787c0595837b11765452444e18c4687baa.tar.gz src-52aef1787c0595837b11765452444e18c4687baa.zip |
Import kernel parts of ipfilter-3.2.1
Notes
Notes:
svn path=/vendor-sys/ipfilter/dist-old/; revision=31187
Diffstat (limited to 'sys/netinet/ip_frag.h')
-rw-r--r-- | sys/netinet/ip_frag.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/sys/netinet/ip_frag.h b/sys/netinet/ip_frag.h index df275babb318..ade7139e4933 100644 --- a/sys/netinet/ip_frag.h +++ b/sys/netinet/ip_frag.h @@ -1,12 +1,12 @@ /* - * (C)opyright 1993-1997 by Darren Reed. + * Copyright (C) 1993-1997 by Darren Reed. * * Redistribution and use in source and binary forms are permitted * provided that this notice is preserved and due credit is given * to the original author and the contributors. * * @(#)ip_frag.h 1.5 3/24/96 - * $Id: ip_frag.h,v 2.0.2.7 1997/05/08 10:10:18 darrenr Exp $ + * $Id: ip_frag.h,v 2.0.2.12 1997/10/23 14:56:01 darrenr Exp $ */ #ifndef __IP_FRAG_H__ @@ -41,14 +41,16 @@ typedef struct ipfrstat { #define IPFR_CMPSZ (4 + 4 + 2 + 1 + 1) -extern ipfrstat_t *ipfr_fragstats __P((void)); -extern int ipfr_newfrag __P((ip_t *, fr_info_t *, int)); -extern int ipfr_nat_newfrag __P((ip_t *, fr_info_t *, int, struct nat *)); -extern nat_t *ipfr_nat_knownfrag __P((ip_t *, fr_info_t *)); -extern int ipfr_knownfrag __P((ip_t *, fr_info_t *)); -extern void ipfr_unload __P((void)); +extern int fr_ipfrttl; +extern ipfrstat_t *ipfr_fragstats __P((void)); +extern int ipfr_newfrag __P((ip_t *, fr_info_t *, int)); +extern int ipfr_nat_newfrag __P((ip_t *, fr_info_t *, int, struct nat *)); +extern nat_t *ipfr_nat_knownfrag __P((ip_t *, fr_info_t *)); +extern int ipfr_knownfrag __P((ip_t *, fr_info_t *)); +extern void ipfr_forget __P((void *)); +extern void ipfr_unload __P((void)); -#if (BSD >= 199306) || SOLARIS +#if (BSD >= 199306) || SOLARIS || defined(__sgi) extern void ipfr_slowtimer __P((void)); #else extern int ipfr_slowtimer __P((void)); |