xref: /aosp_15_r20/external/libnl/include/netlink/cli/ct.h (revision 4dc78e53d49367fa8e61b07018507c90983a077d)
1 /* SPDX-License-Identifier: LGPL-2.1-only */
2 /*
3  * Copyright (c) 2008-2009 Thomas Graf <[email protected]>
4  */
5 
6 #ifndef __NETLINK_CLI_CT_H_
7 #define __NETLINK_CLI_CT_H_
8 
9 #include <netlink/netfilter/ct.h>
10 #include <linux/netfilter/nf_conntrack_common.h>
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 extern struct nfnl_ct *nl_cli_ct_alloc(void);
17 extern struct nl_cache *nl_cli_ct_alloc_cache(struct nl_sock *);
18 
19 extern void nl_cli_ct_parse_family(struct nfnl_ct *, char *);
20 extern void nl_cli_ct_parse_protocol(struct nfnl_ct *, char *);
21 extern void nl_cli_ct_parse_mark(struct nfnl_ct *, char *);
22 extern void nl_cli_ct_parse_timeout(struct nfnl_ct *, char *);
23 extern void nl_cli_ct_parse_id(struct nfnl_ct *, char *);
24 extern void nl_cli_ct_parse_use(struct nfnl_ct *, char *);
25 extern void nl_cli_ct_parse_src(struct nfnl_ct *, int, char *);
26 extern void nl_cli_ct_parse_dst(struct nfnl_ct *, int, char *);
27 extern void nl_cli_ct_parse_src_port(struct nfnl_ct *, int, char *);
28 extern void nl_cli_ct_parse_dst_port(struct nfnl_ct *, int, char *);
29 extern void nl_cli_ct_parse_tcp_state(struct nfnl_ct *, char *);
30 extern void nl_cli_ct_parse_status(struct nfnl_ct *, char *);
31 extern void nl_cli_ct_parse_zone(struct nfnl_ct *, char *);
32 
33 #ifdef __cplusplus
34 }
35 #endif
36 
37 #endif
38