| 952 | } |
| 953 | |
| 954 | static void |
| 955 | nat_fill_ntlv(ipfw_obj_ntlv *ntlv, int i) |
| 956 | { |
| 957 | |
| 958 | ntlv->head.type = IPFW_TLV_EACTION_NAME(1); /* it doesn't matter */ |
| 959 | ntlv->head.length = sizeof(ipfw_obj_ntlv); |
| 960 | ntlv->idx = 1; |
| 961 | ntlv->set = 0; /* not yet */ |
| 962 | snprintf(ntlv->name, sizeof(ntlv->name), "%d", i); |
| 963 | } |
| 964 | |
| 965 | int |
| 966 | ipfw_delete_nat(int i) |
no test coverage detected