Home
last modified time | relevance | path

Searched refs:ioc_table (Results 1 – 3 of 3) sorted by relevance

/dflybsd-src/sys/net/ipfw3_basic/
H A Dip_fw3_table.c88 struct ipfw_ioc_table *ioc_table; in table_create_dispatch() local
91 ioc_table = tbmsg->ioc_table; in table_create_dispatch()
92 int id = ioc_table->id; in table_create_dispatch()
96 table_ctx->type = ioc_table->type; in table_create_dispatch()
98 strlcpy(table_ctx->name , ioc_table->name, IPFW_TABLE_NAME_LEN); in table_create_dispatch()
125 ioc_tbl = tbmsg->ioc_table; in table_delete_dispatch()
147 ioc_tbl = tbmsg->ioc_table; in table_append_dispatch()
203 ioc_tbl = tbmsg->ioc_table; in table_remove_dispatch()
242 ioc_tbl = tbmsg->ioc_table; in table_flush_dispatch()
263 ioc_tbl = tbmsg->ioc_table; in table_rename_dispatch()
[all …]
H A Dip_fw3_table.h84 struct ipfw_ioc_table *ioc_table; member
/dflybsd-src/sbin/ipfw3/
H A Dipfw3table.c206 struct ipfw_ioc_table ioc_table; in table_flush() local
207 struct ipfw_ioc_table *t = &ioc_table; in table_flush()
225 struct ipfw_ioc_table *ioc_table; in table_list() local
239 ioc_table = (struct ipfw_ioc_table *)data; in table_list()
241 for (i = 0; i < count; i++, ioc_table++) { in table_list()
242 if (ioc_table->type > 0) { in table_list()
243 printf("table %d",ioc_table->id); in table_list()
244 if (ioc_table->type == 1) in table_list()
246 else if (ioc_table->type == 2) in table_list()
248 printf(" count %d",ioc_table->count); in table_list()
[all …]