| 89 | } |
| 90 | |
| 91 | struct inpcbgroup * |
| 92 | in6_pcbgroup_bymbuf(struct inpcbinfo *pcbinfo, struct mbuf *m) |
| 93 | { |
| 94 | |
| 95 | return (in6_pcbgroup_byhash(pcbinfo, M_HASHTYPE_GET(m), |
| 96 | m->m_pkthdr.flowid)); |
| 97 | } |
| 98 | |
| 99 | struct inpcbgroup * |
| 100 | in6_pcbgroup_bytuple(struct inpcbinfo *pcbinfo, const struct in6_addr *laddrp, |
nothing calls this directly
no test coverage detected