Symbol: ip6_fw
sbin/ip6fw/ip6fw.c
1138
struct ip6_fw rule;
sbin/ip6fw/ip6fw.c
211
show_ip6fw(struct ip6_fw *chain)
sbin/ip6fw/ip6fw.c
438
struct ip6_fw *r, *rules, *n;
sbin/ip6fw/ip6fw.c
777
struct ip6_fw rule;
sbin/ip6fw/ip6fw.c
841
struct ip6_fw rule;
sys/net/ip6fw/ip6_fw.c
1156
struct ip6_fw *frwl = check_ip6fw_mbuf(m);
sys/net/ip6fw/ip6_fw.c
1169
if (m->m_len != sizeof(struct ip6_fw)) {
sys/net/ip6fw/ip6_fw.c
1171
(int)sizeof(struct ip6_fw)));
sys/net/ip6fw/ip6_fw.c
1173
} else if (mtod(m, struct ip6_fw *)->fw_number == (u_short)-1) {
sys/net/ip6fw/ip6_fw.c
1178
mtod(m, struct ip6_fw *)->fw_number);
sys/net/ip6fw/ip6_fw.c
1197
struct ip6_fw default_rule;
sys/net/ip6fw/ip6_fw.c
133
static int add_entry6 (struct ip6_fw_head *chainptr, struct ip6_fw *frwl);
sys/net/ip6fw/ip6_fw.c
136
static struct ip6_fw *check_ip6fw_struct (struct ip6_fw *m);
sys/net/ip6fw/ip6_fw.c
137
static struct ip6_fw *check_ip6fw_mbuf (struct mbuf *fw);
sys/net/ip6fw/ip6_fw.c
138
static int ip6opts_match (struct ip6_hdr **ip6, struct ip6_fw *f,
sys/net/ip6fw/ip6_fw.c
143
static int tcp6flg_match (struct tcphdr *tcp6, struct ip6_fw *f);
sys/net/ip6fw/ip6_fw.c
144
static int icmp6type_match (struct icmp6_hdr * icmp, struct ip6_fw * f);
sys/net/ip6fw/ip6_fw.c
145
static void ip6fw_report (struct ip6_fw *f, struct ip6_hdr *ip6,
sys/net/ip6fw/ip6_fw.c
178
tcp6flg_match(struct tcphdr *tcp6, struct ip6_fw *f)
sys/net/ip6fw/ip6_fw.c
204
icmp6type_match(struct icmp6_hdr *icmp6, struct ip6_fw *f)
sys/net/ip6fw/ip6_fw.c
242
ip6opts_match(struct ip6_hdr **pip6, struct ip6_fw *f, struct mbuf **m,
sys/net/ip6fw/ip6_fw.c
357
ip6fw_report(struct ip6_fw *f, struct ip6_hdr *ip6,
sys/net/ip6fw/ip6_fw.c
502
struct ip6_fw *rule = NULL;
sys/net/ip6fw/ip6_fw.c
533
struct ip6_fw *const f = chain->rule;
sys/net/ip6fw/ip6_fw.c
841
add_entry6(struct ip6_fw_head *chainptr, struct ip6_fw *frwl)
sys/net/ip6fw/ip6_fw.c
843
struct ip6_fw *ftmp = NULL;
sys/net/ip6fw/ip6_fw.c
850
bcopy(frwl, ftmp, sizeof(struct ip6_fw));
sys/net/ip6fw/ip6_fw.c
928
struct ip6_fw *frwl;
sys/net/ip6fw/ip6_fw.c
932
if (m->m_len != sizeof(struct ip6_fw))
sys/net/ip6fw/ip6_fw.c
934
frwl = mtod(m, struct ip6_fw *);
sys/net/ip6fw/ip6_fw.c
964
static struct ip6_fw *
sys/net/ip6fw/ip6_fw.c
968
if (m->m_len != sizeof(struct ip6_fw)) {
sys/net/ip6fw/ip6_fw.c
970
(int)sizeof(struct ip6_fw)));
sys/net/ip6fw/ip6_fw.c
973
return(check_ip6fw_struct(mtod(m, struct ip6_fw *)));
sys/net/ip6fw/ip6_fw.c
976
static struct ip6_fw *
sys/net/ip6fw/ip6_fw.c
977
check_ip6fw_struct(struct ip6_fw *frwl)
sys/net/ip6fw/ip6_fw.h
129
struct ip6_fw *rule;