libnl 3.7.0
ct.h
1/* SPDX-License-Identifier: LGPL-2.1-only */
2/*
3 * Copyright (c) 2008-2009 Thomas Graf <tgraf@suug.ch>
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
13extern "C" {
14#endif
15
16extern struct nfnl_ct *nl_cli_ct_alloc(void);
17extern struct nl_cache *nl_cli_ct_alloc_cache(struct nl_sock *);
18
19extern void nl_cli_ct_parse_family(struct nfnl_ct *, char *);
20extern void nl_cli_ct_parse_protocol(struct nfnl_ct *, char *);
21extern void nl_cli_ct_parse_mark(struct nfnl_ct *, char *);
22extern void nl_cli_ct_parse_timeout(struct nfnl_ct *, char *);
23extern void nl_cli_ct_parse_id(struct nfnl_ct *, char *);
24extern void nl_cli_ct_parse_use(struct nfnl_ct *, char *);
25extern void nl_cli_ct_parse_src(struct nfnl_ct *, int, char *);
26extern void nl_cli_ct_parse_dst(struct nfnl_ct *, int, char *);
27extern void nl_cli_ct_parse_src_port(struct nfnl_ct *, int, char *);
28extern void nl_cli_ct_parse_dst_port(struct nfnl_ct *, int, char *);
29extern void nl_cli_ct_parse_tcp_state(struct nfnl_ct *, char *);
30extern void nl_cli_ct_parse_status(struct nfnl_ct *, char *);
31extern void nl_cli_ct_parse_zone(struct nfnl_ct *, char *);
32
33#ifdef __cplusplus
34}
35#endif
36
37#endif