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

Function mbuf_has_tls_session

freebsd/sys/mbuf.h:1610–1620  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1608#endif
1609
1610static inline bool
1611mbuf_has_tls_session(struct mbuf *m)
1612{
1613
1614 if (m->m_flags & M_EXTPG) {
1615 if (m->m_epg_tls != NULL) {
1616 return (true);
1617 }
1618 }
1619 return (false);
1620}
1621
1622#endif /* _KERNEL */
1623#endif /* !_SYS_MBUF_H_ */

Callers 4

ip_output_sendFunction · 0.50
ip6_output_sendFunction · 0.50
sbready_compressFunction · 0.50
sbcompressFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected