socsvn commit: r271867 - soc2014/dpl/netmap-ipfwjit/sys/netpfil/ipfw
dpl at FreeBSD.org
dpl at FreeBSD.org
Mon Aug 4 19:30:14 UTC 2014
Author: dpl
Date: Mon Aug 4 19:30:13 2014
New Revision: 271867
URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=271867
Log:
Changed function types to what we're going to use.
Modified:
soc2014/dpl/netmap-ipfwjit/sys/netpfil/ipfw/ip_fw2.c
Modified: soc2014/dpl/netmap-ipfwjit/sys/netpfil/ipfw/ip_fw2.c
==============================================================================
--- soc2014/dpl/netmap-ipfwjit/sys/netpfil/ipfw/ip_fw2.c Mon Aug 4 19:29:15 2014 (r271866)
+++ soc2014/dpl/netmap-ipfwjit/sys/netpfil/ipfw/ip_fw2.c Mon Aug 4 19:30:13 2014 (r271867)
@@ -128,10 +128,10 @@
static unsigned int default_fw_tables = IPFW_TABLES_DEFAULT;
/* JIT compiling API */
-funcptr compile_code();
+funcptr compile_code(ip_fw_args *, ip_fw_chain *);
/* Pointer to the actual compiled code */
-int (*compiledfuncptr)() = 0;
+int (*compiledfuncptr)(struct ip_fw_args *) = 0;
/*
* Each rule belongs to one of 32 different sets (0..31).
More information about the svn-soc-all
mailing list