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

Function uipc_connectat

freebsd/kern/uipc_usrreq.c:720–729  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

718}
719
720static int
721uipc_connectat(int fd, struct socket *so, struct sockaddr *nam,
722 struct thread *td)
723{
724 int error;
725
726 KASSERT(td == curthread, ("uipc_connectat: td != curthread"));
727 error = unp_connectat(fd, so, nam, td);
728 return (error);
729}
730
731static void
732uipc_close(struct socket *so)

Callers

nothing calls this directly

Calls 1

unp_connectatFunction · 0.85

Tested by

no test coverage detected