| 1734 | } |
| 1735 | |
| 1736 | static int |
| 1737 | udp_send(struct socket *so, int flags, struct mbuf *m, struct sockaddr *addr, |
| 1738 | struct mbuf *control, struct thread *td) |
| 1739 | { |
| 1740 | struct inpcb *inp; |
| 1741 | |
| 1742 | inp = sotoinpcb(so); |
| 1743 | KASSERT(inp != NULL, ("udp_send: inp == NULL")); |
| 1744 | return (udp_output(inp, m, addr, control, td, flags)); |
| 1745 | } |
| 1746 | #endif /* INET */ |
| 1747 | |
| 1748 | int |
nothing calls this directly
no test coverage detected