Home
last modified time | relevance | path

Searched refs:chunkmap (Results 1 – 2 of 2) sorted by relevance

/openbmc/linux/include/uapi/linux/netfilter/
H A Dxt_sctp.h25 __u32 chunkmap[256 / sizeof (__u32)]; /* Bit mask of chunks to be matched according to RFC 2960 */ member
41 #define SCTP_CHUNKMAP_SET(chunkmap, type) \ argument
43 (chunkmap)[type / bytes(__u32)] |= \
47 #define SCTP_CHUNKMAP_CLEAR(chunkmap, type) \ argument
49 (chunkmap)[type / bytes(__u32)] &= \
53 #define SCTP_CHUNKMAP_IS_SET(chunkmap, type) \ argument
55 ((chunkmap)[type / bytes (__u32)] & \
59 #define SCTP_CHUNKMAP_RESET(chunkmap) \ argument
60 memset((chunkmap), 0, sizeof(chunkmap))
62 #define SCTP_CHUNKMAP_SET_ALL(chunkmap) \ argument
[all …]
/openbmc/linux/net/netfilter/
H A Dxt_sctp.c56 SCTP_CHUNKMAP_COPY(chunkmapcopy, info->chunkmap); in match_packet()
75 if (SCTP_CHUNKMAP_IS_SET(info->chunkmap, sch->type)) { in match_packet()