| 75 | } |
| 76 | |
| 77 | void |
| 78 | print_unreach6_code(struct buf_pr *bp, uint16_t code) |
| 79 | { |
| 80 | char const *s = match_value(icmp6codes, code); |
| 81 | |
| 82 | if (s != NULL) |
| 83 | bprintf(bp, "unreach6 %s", s); |
| 84 | else |
| 85 | bprintf(bp, "unreach6 %u", code); |
| 86 | } |
| 87 | |
| 88 | /* |
| 89 | * Print the ip address contained in a command. |
no test coverage detected