Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 4a3928c6f8a53fa1aed28ccba227742486e8ddcb authored by Linus Torvalds on 26 February 2018, 02:50:41 UTC
Linux 4.16-rc3
Tip revision: 4a3928c
nf_conntrack_sctp.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _NF_CONNTRACK_SCTP_H
#define _NF_CONNTRACK_SCTP_H
/* SCTP tracking. */

#include <uapi/linux/netfilter/nf_conntrack_sctp.h>

struct ip_ct_sctp {
	enum sctp_conntrack state;

	__be32 vtag[IP_CT_DIR_MAX];
};

#endif /* _NF_CONNTRACK_SCTP_H */
back to top