| 366 | } |
| 367 | |
| 368 | int |
| 369 | encap4_input(struct mbuf **mp, int *offp, int proto) |
| 370 | { |
| 371 | |
| 372 | if (encap_input(&ipv4_encaptab, *mp, *offp, proto) != IPPROTO_DONE) |
| 373 | return (rip_input(mp, offp, proto)); |
| 374 | return (IPPROTO_DONE); |
| 375 | } |
| 376 | #endif /* INET */ |
| 377 | |
| 378 | #ifdef INET6 |
nothing calls this directly
no test coverage detected