Changeset View
Changeset View
Standalone View
Standalone View
sys/netpfil/pf/pf.h
Show First 20 Lines • Show All 311 Lines • ▼ Show 20 Lines | union { | ||||
u_int16_t key16[8]; | u_int16_t key16[8]; | ||||
u_int32_t key32[4]; | u_int32_t key32[4]; | ||||
} pfk; /* 128-bit hash key */ | } pfk; /* 128-bit hash key */ | ||||
#define key8 pfk.key8 | #define key8 pfk.key8 | ||||
#define key16 pfk.key16 | #define key16 pfk.key16 | ||||
#define key32 pfk.key32 | #define key32 pfk.key32 | ||||
}; | }; | ||||
struct pf_mape_portset { | |||||
u_int8_t offset; | |||||
u_int8_t psidlen; | |||||
u_int16_t psid; | |||||
}; | |||||
struct pf_pool { | struct pf_pool { | ||||
struct pf_palist list; | struct pf_palist list; | ||||
struct pf_pooladdr *cur; | struct pf_pooladdr *cur; | ||||
struct pf_poolhashkey key; | struct pf_poolhashkey key; | ||||
struct pf_addr counter; | struct pf_addr counter; | ||||
int tblidx; | int tblidx; | ||||
u_int16_t proxy_port[2]; | u_int16_t proxy_port[2]; | ||||
u_int8_t opts; | u_int8_t opts; | ||||
▲ Show 20 Lines • Show All 315 Lines • Show Last 20 Lines |