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

Function uipc_connect

freebsd/kern/uipc_usrreq.c:710–718  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

708}
709
710static int
711uipc_connect(struct socket *so, struct sockaddr *nam, struct thread *td)
712{
713 int error;
714
715 KASSERT(td == curthread, ("uipc_connect: td != curthread"));
716 error = unp_connect(so, nam, td);
717 return (error);
718}
719
720static int
721uipc_connectat(int fd, struct socket *so, struct sockaddr *nam,

Callers

nothing calls this directly

Calls 1

unp_connectFunction · 0.85

Tested by

no test coverage detected