| 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
|---|---|
| 2 | #ifndef _NF_CONNTRACK_SCTP_H |
| 3 | #define _NF_CONNTRACK_SCTP_H |
| 4 | /* SCTP tracking. */ |
| 5 | |
| 6 | #include <uapi/linux/netfilter/nf_conntrack_sctp.h> |
| 7 | |
| 8 | struct ip_ct_sctp { |
| 9 | enum sctp_conntrack state; |
| 10 | |
| 11 | __be32 vtag[IP_CT_DIR_MAX]; |
| 12 | u8 init[IP_CT_DIR_MAX]; |
| 13 | u8 last_dir; |
| 14 | u8 flags; |
| 15 | }; |
| 16 | |
| 17 | #endif /* _NF_CONNTRACK_SCTP_H */ |
| 18 |
