/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _NF_CONNTRACK_SYNPROXY_H #define _NF_CONNTRACK_SYNPROXY_H #include <net/netfilter/nf_conntrack_seqadj.h> #include <net/netns/generic.h> struct nf_conn_synproxy { … }; static inline struct nf_conn_synproxy *nfct_synproxy(const struct nf_conn *ct) { … } static inline struct nf_conn_synproxy *nfct_synproxy_ext_add(struct nf_conn *ct) { … } static inline bool nf_ct_add_synproxy(struct nf_conn *ct, const struct nf_conn *tmpl) { … } #endif /* _NF_CONNTRACK_SYNPROXY_H */