Home
last modified time | relevance | path

Searched refs:npf_tableset_t (Results 1 – 5 of 5) sorted by relevance

/dports/misc/rump/buildrump.sh-b914579/src/sys/net/npf/
H A Dnpf_impl.h90 typedef struct npf_tableset npf_tableset_t; typedef
152 void npf_config_load(npf_ruleset_t *, npf_tableset_t *,
156 npf_tableset_t *npf_config_tableset(void);
233 npf_tableset_t *npf_tableset_create(u_int);
234 void npf_tableset_destroy(npf_tableset_t *);
235 int npf_tableset_insert(npf_tableset_t *, npf_table_t *);
236 npf_table_t * npf_tableset_getbyname(npf_tableset_t *, const char *);
237 npf_table_t * npf_tableset_getbyid(npf_tableset_t *, u_int);
238 void npf_tableset_reload(npf_tableset_t *, npf_tableset_t *);
239 int npf_tableset_export(const npf_tableset_t *, prop_array_t);
[all …]
H A Dnpf_conf.c66 npf_tableset_t * n_tables;
81 npf_tableset_t *tset; in npf_config_init()
128 npf_config_load(npf_ruleset_t *rset, npf_tableset_t *tset, in npf_config_load()
253 npf_tableset_t *
H A Dnpf_tableset.c113 (offsetof(npf_tableset_t, ts_map[n]) * sizeof(npf_table_t *))
135 npf_tableset_t *
138 npf_tableset_t *ts = kmem_zalloc(NPF_TABLESET_SIZE(nitems), KM_SLEEP); in npf_tableset_create()
144 npf_tableset_destroy(npf_tableset_t *ts) in npf_tableset_destroy()
166 npf_tableset_insert(npf_tableset_t *ts, npf_table_t *t) in npf_tableset_insert()
187 npf_tableset_getbyname(npf_tableset_t *ts, const char *name) in npf_tableset_getbyname()
201 npf_tableset_getbyid(npf_tableset_t *ts, u_int tid) in npf_tableset_getbyid()
216 npf_tableset_reload(npf_tableset_t *nts, npf_tableset_t *ots) in npf_tableset_reload()
260 npf_tableset_export(const npf_tableset_t *ts, prop_array_t tables) in npf_tableset_export()
416 npf_table_check(npf_tableset_t *ts, const char *name, u_int tid, int type) in npf_table_check()
H A Dnpf_ctl.c107 npf_mk_tables(npf_tableset_t *tblset, prop_array_t tables, in npf_mk_tables()
503 npf_tableset_t *tblset = NULL; in npfctl_load()
820 npf_tableset_t *ts; in npfctl_table()
H A Dnpf_bpf.c167 npf_tableset_t *tblset = npf_config_tableset(); in npf_cop_table()