MCPcopy Create free account
hub / github.com/F-Stack/f-stack / udp_send

Function udp_send

freebsd/netinet/udp_usrreq.c:1736–1745  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1734}
1735
1736static int
1737udp_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
1748int

Callers

nothing calls this directly

Calls 1

udp_outputFunction · 0.85

Tested by

no test coverage detected