summaryrefslogtreecommitdiffstats
path: root/include/libnetfilter_conntrack/libnetfilter_conntrack_sctp.h
blob: 7e628238a494d5148bf90c9d21db6933449646d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
 * (C) 2005 by Pablo Neira Ayuso <pablo@eurodev.net>
 *
 * This software may be used and distributed according to the terms
 * of the GNU General Public License, incorporated herein by reference.
 */

#ifndef _LIBNETFILTER_CONNTRACK_SCTP_H_
#define _LIBNETFILTER_CONNTRACK_SCTP_H_

#ifdef __cplusplus
extern "C" {
#endif

enum sctp_flags {
	SCTP_ORIG_SPORT_BIT = 0,
	SCTP_ORIG_SPORT = (1 << SCTP_ORIG_SPORT_BIT),

	SCTP_ORIG_DPORT_BIT = 1,
	SCTP_ORIG_DPORT = (1 << SCTP_ORIG_DPORT_BIT),

	SCTP_REPL_SPORT_BIT = 2,
	SCTP_REPL_SPORT = (1 << SCTP_REPL_SPORT_BIT),

	SCTP_REPL_DPORT_BIT = 3,
	SCTP_REPL_DPORT = (1 << SCTP_REPL_DPORT_BIT),

	SCTP_MASK_SPORT_BIT = 4,
	SCTP_MASK_SPORT = (1 << SCTP_MASK_SPORT_BIT),

	SCTP_MASK_DPORT_BIT = 5,
	SCTP_MASK_DPORT = (1 << SCTP_MASK_DPORT_BIT),

	SCTP_STATE_BIT = 6,
	SCTP_STATE = (1 << SCTP_STATE_BIT),

	SCTP_EXPTUPLE_SPORT_BIT = 7,
	SCTP_EXPTUPLE_SPORT = (1 << SCTP_EXPTUPLE_SPORT_BIT),

	SCTP_EXPTUPLE_DPORT_BIT = 8,
	SCTP_EXPTUPLE_DPORT = (1 << SCTP_EXPTUPLE_DPORT_BIT)
};

#ifdef __cplusplus
}
#endif

#endif