/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _NET_ESPINTCP_H #define _NET_ESPINTCP_H #include <net/strparser.h> #include <linux/skmsg.h> void __init espintcp_init(void); int espintcp_push_skb(struct sock *sk, struct sk_buff *skb); int espintcp_queue_out(struct sock *sk, struct sk_buff *skb); bool tcp_is_ulp_esp(struct sock *sk); struct espintcp_msg { … }; struct espintcp_ctx { … }; static inline struct espintcp_ctx *espintcp_getctx(const struct sock *sk) { … } #endif