| 634 | } |
| 635 | |
| 636 | static void |
| 637 | nat_show_log(struct nat44_cfg_nat *n, void *arg __unused) |
| 638 | { |
| 639 | char *buf; |
| 640 | |
| 641 | buf = (char *)(n + 1); |
| 642 | if (buf[0] != '\0') |
| 643 | printf("nat %s: %s\n", n->name, buf); |
| 644 | } |
| 645 | |
| 646 | static void |
| 647 | nat_show_cfg(struct nat44_cfg_nat *n, void *arg __unused) |
no test coverage detected