| 127 | #endif |
| 128 | |
| 129 | static const char * |
| 130 | netisr_proto2name(u_int proto) |
| 131 | { |
| 132 | u_int i; |
| 133 | |
| 134 | for (i = 0; i < proto_array_len; i++) { |
| 135 | if (proto_array[i].snp_proto == proto) |
| 136 | return (proto_array[i].snp_name); |
| 137 | } |
| 138 | return ("unknown"); |
| 139 | } |
| 140 | |
| 141 | #ifndef FSTACK |
| 142 | static int |
no outgoing calls
no test coverage detected