Changeset View
Changeset View
Standalone View
Standalone View
sys/netinet/ip_var.h
| Show First 20 Lines • Show All 265 Lines • ▼ Show 20 Lines | |||||
| #define V_inet_pfil_head VNET(inet_pfil_head) | #define V_inet_pfil_head VNET(inet_pfil_head) | ||||
| #define PFIL_INET_NAME "inet" | #define PFIL_INET_NAME "inet" | ||||
| VNET_DECLARE(struct pfil_head *, inet_local_pfil_head); | VNET_DECLARE(struct pfil_head *, inet_local_pfil_head); | ||||
| #define V_inet_local_pfil_head VNET(inet_local_pfil_head) | #define V_inet_local_pfil_head VNET(inet_local_pfil_head) | ||||
| #define PFIL_INET_LOCAL_NAME "inet-local" | #define PFIL_INET_LOCAL_NAME "inet-local" | ||||
| void in_delayed_cksum(struct mbuf *m); | void in_delayed_cksum(struct mbuf *m); | ||||
| void in_delayed_cksum_o(struct mbuf *m, uint16_t o); | |||||
| /* Hooks for ipfw, dummynet, divert etc. Most are declared in raw_ip.c */ | /* Hooks for ipfw, dummynet, divert etc. Most are declared in raw_ip.c */ | ||||
| /* | /* | ||||
| * Reference to an ipfw or packet filter rule that can be carried | * Reference to an ipfw or packet filter rule that can be carried | ||||
| * outside critical sections. | * outside critical sections. | ||||
| * A rule is identified by rulenum:rule_id which is ordered. | * A rule is identified by rulenum:rule_id which is ordered. | ||||
| * In version chain_id the rule can be found in slot 'slot', so | * In version chain_id the rule can be found in slot 'slot', so | ||||
| * we don't need a lookup if chain_id == chain->id. | * we don't need a lookup if chain_id == chain->id. | ||||
| ▲ Show 20 Lines • Show All 77 Lines • Show Last 20 Lines | |||||