sctp: add stream interleave enable members and sockopt
This patch adds intl_enable in asoc and netns, and strm_interleave in sctp_sock to indicate if stream interleave is enabled and supported. netns intl_enable would be set via procfs, but that is not added yet until all stream interleave codes are completely implemented; asoc intl_enable will be set when doing 4-shakehands. sp strm_interleave can be set by sockopt SCTP_INTERLEAVING_SUPPORTED which is also added in this patch. This socket option is defined in section 4.3.1 of RFC8260. Note that strm_interleave can only be set by sockopt when both netns intl_enable and sp frag_interleave are set. Signed-off-by: Xin Long <lucien.xin@gmail.com> Acked-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
92ff426450
commit
772a58693f
@@ -122,9 +122,12 @@ struct netns_sctp {
|
||||
/* Flag to indicate if PR-CONFIG is enabled. */
|
||||
int reconf_enable;
|
||||
|
||||
/* Flag to idicate if SCTP-AUTH is enabled */
|
||||
/* Flag to indicate if SCTP-AUTH is enabled */
|
||||
int auth_enable;
|
||||
|
||||
/* Flag to indicate if stream interleave is enabled */
|
||||
int intl_enable;
|
||||
|
||||
/*
|
||||
* Policy to control SCTP IPv4 address scoping
|
||||
* 0 - Disable IPv4 address scoping
|
||||
|
Reference in New Issue
Block a user