summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/ipt.h
diff options
context:
space:
mode:
authordarrenr <darrenr@FreeBSD.org>1997-04-03 10:22:02 +0000
committerdarrenr <darrenr@FreeBSD.org>1997-04-03 10:22:02 +0000
commitd25503500842fdd0550710a7afb953d1b8f20f00 (patch)
treef687cfed6c59d74a7c81b967eb3caf8a9c5f184e /contrib/ipfilter/ipt.h
parent2d94e888ee6d73e6d599e49598a12d8da9f74f69 (diff)
downloadFreeBSD-src-d25503500842fdd0550710a7afb953d1b8f20f00.zip
FreeBSD-src-d25503500842fdd0550710a7afb953d1b8f20f00.tar.gz
Import IP Filter version 3.2alpha4 to bring in working LKM for 2.2
Diffstat (limited to 'contrib/ipfilter/ipt.h')
-rw-r--r--contrib/ipfilter/ipt.h17
1 files changed, 13 insertions, 4 deletions
diff --git a/contrib/ipfilter/ipt.h b/contrib/ipfilter/ipt.h
index be481ca..e91190b 100644
--- a/contrib/ipfilter/ipt.h
+++ b/contrib/ipfilter/ipt.h
@@ -4,13 +4,22 @@
* 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.
- * $Id: ipt.h,v 2.0.1.1 1997/01/09 15:14:44 darrenr Exp $
+ * $Id: ipt.h,v 2.0.2.4 1997/03/27 13:45:23 darrenr Exp $
*/
#include <fcntl.h>
+#ifdef __STDC__
+#include <stdarg.h>
+#else
+#include <varargs.h>
+#endif
+
struct ipread {
- int (*r_open)();
- int (*r_close)();
- int (*r_readip)();
+ int (*r_open) __P((char *));
+ int (*r_close) __P((void));
+ int (*r_readip) __P((char *, int, char **, int *));
};
+
+extern void debug __P((char *, ...));
+extern void verbose __P((char *, ...));
OpenPOWER on IntegriCloud