| 89 | }; |
| 90 | |
| 91 | static const char * __pure |
| 92 | rt_flag_name(unsigned idx) |
| 93 | { |
| 94 | if (idx >= nitems(rtf_flag_strings)) |
| 95 | return ("INVALID_FLAG"); |
| 96 | if (rtf_flag_strings[idx] == NULL) |
| 97 | return ("UNKNOWN"); |
| 98 | return (rtf_flag_strings[idx]); |
| 99 | } |
| 100 | |
| 101 | static void |
| 102 | rt_dumpaddr_ddb(const char *name, const struct sockaddr *sa) |