Date: Mon, 4 Aug 2014 19:30:14 GMT From: dpl@FreeBSD.org To: svn-soc-all@FreeBSD.org Subject: socsvn commit: r271867 - soc2014/dpl/netmap-ipfwjit/sys/netpfil/ipfw Message-ID: <201408041930.s74JUEgU038367@socsvn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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).
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201408041930.s74JUEgU038367>