Home
last modified time | relevance | path

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

/f-stack/freebsd/netipsec/
H A Dipsec_support.h80 extern const struct tcpmd5_support * const tcp_ipsec_support;
83 (*tcp_ipsec_support->methods->input)(m, __VA_ARGS__)
85 (*tcp_ipsec_support->methods->output)(m, __VA_ARGS__)
87 (*tcp_ipsec_support->methods->pcbctl)(inp, sopt)
94 extern struct tcpmd5_support * const tcp_ipsec_support;
106 tcpmd5_kmod_input(tcp_ipsec_support, m, __VA_ARGS__)
108 tcpmd5_kmod_output(tcp_ipsec_support, m, __VA_ARGS__)
110 tcpmd5_kmod_pcbctl(tcp_ipsec_support, inp, sopt)
H A Dsubr_ipsec.c287 struct tcpmd5_support * const tcp_ipsec_support = &tcpmd5_ipsec; variable
308 KASSERT(tcp_ipsec_support->enabled == 0, ("TCP-MD5 already enabled")); in IPSEC_KMOD_METHOD()
309 tcp_ipsec_support->methods = methods; in IPSEC_KMOD_METHOD()
310 tcp_ipsec_support->enabled |= IPSEC_MODULE_ENABLED; in IPSEC_KMOD_METHOD()
317 if (tcp_ipsec_support->enabled & IPSEC_MODULE_ENABLED) { in tcpmd5_support_disable()
318 ipsec_kmod_drain(&tcp_ipsec_support->enabled); in tcpmd5_support_disable()
319 tcp_ipsec_support->methods = NULL; in tcpmd5_support_disable()
H A Dxform_tcp.c388 const struct tcpmd5_support * const tcp_ipsec_support = &tcpmd5_ipsec; variable