Convert ipfw to use opt_ipfw.h

This commit is contained in:
Gary Palmer 1996-06-12 19:34:33 +00:00
parent a614bfe060
commit 74a9466cc2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=16333
3 changed files with 11 additions and 4 deletions

View File

@ -1,4 +1,4 @@
# $Id: options,v 1.12 1996/05/11 04:39:37 bde Exp $
# $Id: options,v 1.13 1996/05/31 00:20:28 peter Exp $
# Option name filename
@ -64,4 +64,6 @@ CHILD_MAX opt_rlimit.h
OPEN_MAX opt_rlimit.h
# Net stuff.
MROUTING opt_mrouting.h
MROUTING opt_mrouting.h
IPFIREWALL opt_ipfw.h
IPFIREWALL_VERBOSE opt_ipfw.h

View File

@ -12,12 +12,15 @@
*
* This software is provided ``AS IS'' without any warranties of any kind.
*
* $Id: ip_fw.c,v 1.36 1996/05/08 04:28:57 gpalmer Exp $
* $Id: ip_fw.c,v 1.37 1996/06/09 23:46:20 alex Exp $
*/
/*
* Implement IP packet firewall
*/
#include "opt_ipfw.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>

View File

@ -31,9 +31,11 @@
* SUCH DAMAGE.
*
* @(#)ip_input.c 8.2 (Berkeley) 1/4/94
* $Id: ip_input.c,v 1.42 1996/05/08 04:28:57 gpalmer Exp $
* $Id: ip_input.c,v 1.43 1996/06/08 08:18:57 bde Exp $
*/
#include "opt_ipfw.h"
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/malloc.h>