From b9f458f87453a62cea7aeb0441e7a2ac05689f91 Mon Sep 17 00:00:00 2001 From: Shan Wei Date: Tue, 8 Jun 2010 14:15:39 +0200 Subject: xt_sctp: Trace DATA chunk that supports SACK-IMMEDIATELY extension SACK-IMMEDIATELY extension has defined in: http://tools.ietf.org/html/draft-tuexen-tsvwg-sctp-sack-immediately-03. And the latest kernel has added a I flag in DATA chunk to support this extension. So let iptables/netfilter can trace it. Signed-off-by: Shan Wei Signed-off-by: Patrick McHardy --- extensions/libxt_sctp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'extensions/libxt_sctp.c') diff --git a/extensions/libxt_sctp.c b/extensions/libxt_sctp.c index 441f12e2..92bdb079 100644 --- a/extensions/libxt_sctp.c +++ b/extensions/libxt_sctp.c @@ -97,7 +97,7 @@ struct sctp_chunk_names { /*'ALL' and 'NONE' will be treated specially. */ static const struct sctp_chunk_names sctp_chunk_names[] -= { { .name = "DATA", .chunk_type = 0, .valid_flags = "-----UBE"}, += { { .name = "DATA", .chunk_type = 0, .valid_flags = "----IUBE"}, { .name = "INIT", .chunk_type = 1, .valid_flags = "--------"}, { .name = "INIT_ACK", .chunk_type = 2, .valid_flags = "--------"}, { .name = "SACK", .chunk_type = 3, .valid_flags = "--------"}, -- cgit v1.2.3