summaryrefslogtreecommitdiffstats
path: root/sys/netinet/ip_fwdef.c
blob: 2f2a96622f37b277b39ec997eb434c5c2baed625 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * Copyright (c) 1993 Daniel Boulet
 * Copyright (c) 1994 Ugen J.S.Antsilevich
 *
 * Redistribution and use in source forms, with and without modification,
 * are permitted provided that this entire comment appears intact.
 *
 * Redistribution in binary form may occur without any restrictions.
 * Obviously, it would be nice if you gave credit where credit is due
 * but requiring it would be too onerous.
 *
 * This software is provided ``AS IS'' without any warranties of any kind.
 */

/*
 * Dumb definitions which needed when
 * firewall/accounting module is not loaded.
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/domain.h>
#include <sys/socket.h>
#include <sys/errno.h>
#include <sys/time.h>
#include <sys/kernel.h>

#include <net/if.h>
#include <net/route.h>


#include <netinet/in.h>
#include <netinet/in_systm.h>
#include <netinet/ip.h>

#include <netinet/ip_fw.h>

struct  ip_fw *ip_fw_chain=NULL;
u_short ip_fw_policy=0;

struct  ip_fw *ip_acct_chain=NULL;

#ifdef IPFIREWALL
int (*ip_fw_chk_ptr)(struct ip *,struct ifnet *,struct ip_fw *)=&ip_fw_chk;
int (*ip_fw_ctl_ptr)(int,struct mbuf *)=&ip_fw_ctl;
#else
int (*ip_fw_chk_ptr)(struct ip *,struct ifnet *,struct ip_fw *)=NULL;
int (*ip_fw_ctl_ptr)(int,struct mbuf *)=NULL;
#endif


#ifdef IPACCT
void (*ip_acct_cnt_ptr)(struct ip *,struct ifnet *,struct ip_fw *,int)=&ip_acct_cnt;
int  (*ip_acct_ctl_ptr)(int,struct mbuf *)=&ip_acct_ctl;
#else
void (*ip_acct_cnt_ptr)(struct ip *,struct ifnet *,struct ip_fw *,int)=NULL;
int  (*ip_acct_ctl_ptr)(int,struct mbuf *)=NULL;
#endif
OpenPOWER on IntegriCloud