* Raw protocol input routine. Find the socket associated with the packet(s) * and move them over. If nothing exists for this packet, drop it. */ * Raw protocol interface. */
| 71 | * Raw protocol interface. |
| 72 | */ |
| 73 | void |
| 74 | raw_input(struct mbuf *m0, struct sockproto *proto, struct sockaddr *src) |
| 75 | { |
| 76 | |
| 77 | return (raw_input_ext(m0, proto, src, NULL)); |
| 78 | } |
| 79 | |
| 80 | void |
| 81 | raw_input_ext(struct mbuf *m0, struct sockproto *proto, struct sockaddr *src, |
nothing calls this directly
no test coverage detected