diff options
author | Darren Reed <darrenr@FreeBSD.org> | 1997-04-03 10:39:35 +0000 |
---|---|---|
committer | Darren Reed <darrenr@FreeBSD.org> | 1997-04-03 10:39:35 +0000 |
commit | 1fddb84ad639d46f835aa6d5b12abdbbc6934d03 (patch) | |
tree | 06c26c4b986f2caa85cf9dbc2e4a480bba2eeff0 /sys/netinet/ip_frag.h | |
parent | 413e00145c3f486f87ed078f02b03545cc6aec9c (diff) | |
download | src-1fddb84ad639d46f835aa6d5b12abdbbc6934d03.tar.gz src-1fddb84ad639d46f835aa6d5b12abdbbc6934d03.zip |
Really import sys/netinet changes for IP Filter 3.2alpha4 this time.vendor/ipfilter-sys/V3_2_A4
Notes
Notes:
svn path=/vendor-sys/ipfilter/dist-old/; revision=24586
svn path=/vendor-sys/ipfilter/V3_2_A4/; revision=24588; tag=vendor/ipfilter-sys/V3_2_A4
Diffstat (limited to 'sys/netinet/ip_frag.h')
-rw-r--r-- | sys/netinet/ip_frag.h | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/sys/netinet/ip_frag.h b/sys/netinet/ip_frag.h index a356785e528c..0e8fe90ccc54 100644 --- a/sys/netinet/ip_frag.h +++ b/sys/netinet/ip_frag.h @@ -6,7 +6,7 @@ * to the original author and the contributors. * * @(#)ip_frag.h 1.5 3/24/96 - * $Id: ip_frag.h,v 2.0.1.1 1997/01/09 15:14:43 darrenr Exp $ + * $Id: ip_frag.h,v 1.1.1.2 1997/04/03 10:11:06 darrenr Exp $ */ #ifndef __IP_FRAG_H_ @@ -39,9 +39,13 @@ typedef struct ipfrstat { #define IPFR_CMPSZ (4 + 4 + 2 + 1 + 1) -extern ipfrstat_t *ipfr_fragstats(); -extern int ipfr_newfrag(), ipfr_knownfrag(); -# ifdef _KERNEL -extern void ipfr_unload(); -# endif +extern ipfrstat_t *ipfr_fragstats __P((void)); +extern int ipfr_newfrag __P((ip_t *, fr_info_t *, int)); +extern int ipfr_knownfrag __P((ip_t *, fr_info_t *)); +extern void ipfr_unload __P((void)); +#if (BSD >= 199306) || SOLARIS +extern void ipfr_slowtimer __P((void)); +#else +extern int ipfr_slowtimer __P((void)); +#endif #endif /* __IP_FIL_H__ */ |