| 433 | } |
| 434 | |
| 435 | static void |
| 436 | print_addr(int af, const void *addr) |
| 437 | { |
| 438 | char str[INET6_ADDRSTRLEN]; |
| 439 | const char *ret; |
| 440 | |
| 441 | ret = inet_ntop(af, addr, str, sizeof(str)); |
| 442 | if (ret != NULL) |
| 443 | printf("%s", str); |
| 444 | } |
| 445 | |
| 446 | static void |
| 447 | print_tuple(int af, uint32_t spi, const void *dip, const void *sip) |
no test coverage detected