License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / include / linux / netfilter / nf_conntrack_common.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
9fb9cbb1
YK
2#ifndef _NF_CONNTRACK_COMMON_H
3#define _NF_CONNTRACK_COMMON_H
9fb9cbb1 4
94d0ec58 5#include <uapi/linux/netfilter/nf_conntrack_common.h>
9fb9cbb1 6
d94d9fee 7struct ip_conntrack_stat {
9fb9cbb1 8 unsigned int found;
9fb9cbb1
YK
9 unsigned int invalid;
10 unsigned int ignore;
9fb9cbb1
YK
11 unsigned int insert;
12 unsigned int insert_failed;
13 unsigned int drop;
14 unsigned int early_drop;
15 unsigned int error;
16 unsigned int expect_new;
17 unsigned int expect_create;
18 unsigned int expect_delete;
af740b2c 19 unsigned int search_restart;
9fb9cbb1
YK
20};
21
2e4e6a17 22/* call to create an explicit dependency on nf_conntrack. */
a0f4ecf3 23void need_conntrack(void);
2e4e6a17 24
9fb9cbb1 25#endif /* _NF_CONNTRACK_COMMON_H */