| 814 | } |
| 815 | |
| 816 | static int |
| 817 | nat64lsn_destroy_cb(ipfw_nat64lsn_cfg *cfg, const char *name __unused, |
| 818 | uint8_t set) |
| 819 | { |
| 820 | |
| 821 | if (g_co.use_set != 0 && cfg->set != set) |
| 822 | return (ESRCH); |
| 823 | |
| 824 | nat64lsn_destroy(cfg->name, cfg->set); |
| 825 | return (0); |
| 826 | } |
| 827 | |
| 828 | |
| 829 | /* |
nothing calls this directly
no test coverage detected