| 405 | } |
| 406 | |
| 407 | int |
| 408 | encap6_input(struct mbuf **mp, int *offp, int proto) |
| 409 | { |
| 410 | |
| 411 | if (encap_input(&ipv6_encaptab, *mp, *offp, proto) != IPPROTO_DONE) |
| 412 | return (rip6_input(mp, offp, proto)); |
| 413 | return (IPPROTO_DONE); |
| 414 | } |
| 415 | #endif /* INET6 */ |
nothing calls this directly
no test coverage detected