| 272 | } |
| 273 | |
| 274 | struct domain * |
| 275 | pffinddomain(int family) |
| 276 | { |
| 277 | struct domain *dp; |
| 278 | |
| 279 | for (dp = domains; dp != NULL; dp = dp->dom_next) |
| 280 | if (dp->dom_family == family) |
| 281 | return (dp); |
| 282 | return (NULL); |
| 283 | } |
| 284 | |
| 285 | struct protosw * |
| 286 | pffindtype(int family, int type) |
no outgoing calls
no test coverage detected