| 3071 | } |
| 3072 | |
| 3073 | static uint16_t |
| 3074 | pack_table(struct tidx *tstate, const char *name) |
| 3075 | { |
| 3076 | |
| 3077 | if (table_check_name(name) != 0) |
| 3078 | return (0); |
| 3079 | |
| 3080 | return (pack_object(tstate, name, IPFW_TLV_TBL_NAME)); |
| 3081 | } |
| 3082 | |
| 3083 | void |
| 3084 | fill_table(struct _ipfw_insn *cmd, char *av, uint8_t opcode, |
no test coverage detected