| 1608 | #endif |
| 1609 | |
| 1610 | static inline bool |
| 1611 | mbuf_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_ */ |
no outgoing calls
no test coverage detected