Home
last modified time | relevance | path

Searched refs:tcp_ipsec_support (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/netipsec/
H A Dipsec_support.h113 extern const struct tcpmd5_support * const tcp_ipsec_support;
116 (*tcp_ipsec_support->methods->input)(m, __VA_ARGS__)
118 (*tcp_ipsec_support->methods->output)(m, __VA_ARGS__)
120 (*tcp_ipsec_support->methods->pcbctl)(inp, sopt)
127 extern struct tcpmd5_support * const tcp_ipsec_support;
139 tcpmd5_kmod_input(tcp_ipsec_support, m, __VA_ARGS__)
141 tcpmd5_kmod_output(tcp_ipsec_support, m, __VA_ARGS__)
143 tcpmd5_kmod_pcbctl(tcp_ipsec_support, inp, sopt)
H A Dsubr_ipsec.c274 struct tcpmd5_support * const tcp_ipsec_support = &tcpmd5_ipsec; variable
295 KASSERT(tcp_ipsec_support->enabled == 0, ("TCP-MD5 already enabled")); in IPSEC_KMOD_METHOD()
296 tcp_ipsec_support->methods = methods; in IPSEC_KMOD_METHOD()
297 tcp_ipsec_support->enabled |= IPSEC_MODULE_ENABLED; in IPSEC_KMOD_METHOD()
304 if (tcp_ipsec_support->enabled & IPSEC_MODULE_ENABLED) { in tcpmd5_support_disable()
305 ipsec_kmod_drain(&tcp_ipsec_support->enabled); in tcpmd5_support_disable()
306 tcp_ipsec_support->methods = NULL; in tcpmd5_support_disable()
H A Dxform_tcp.c403 const struct tcpmd5_support * const tcp_ipsec_support = &tcpmd5_ipsec; variable