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

Function pffinddomain

freebsd/kern/uipc_domain.c:274–283  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

272}
273
274struct domain *
275pffinddomain(int family)
276{
277 struct domain *dp;
278
279 for (dp = domains; dp != NULL; dp = dp->dom_next)
280 if (dp->dom_family == family)
281 return (dp);
282 return (NULL);
283}
284
285struct protosw *
286pffindtype(int family, int type)

Callers 5

socreateFunction · 0.85
pffindtypeFunction · 0.85
pffindprotoFunction · 0.85
pf_proto_registerFunction · 0.85
pf_proto_unregisterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected