diff options
author | Xin Long <lucien.xin@gmail.com> | 2017-01-17 17:44:45 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-18 20:55:10 +0100 |
commit | c28445c3cb07ba1da2c1dc7b5f3066c686a6acc6 (patch) | |
tree | 895c47f141f724503092d5966687e3484c202673 /include/net/netns | |
parent | sctp: add stream reconf primitive (diff) | |
download | linux-c28445c3cb07ba1da2c1dc7b5f3066c686a6acc6.tar.xz linux-c28445c3cb07ba1da2c1dc7b5f3066c686a6acc6.zip |
sctp: add reconf_enable in asoc ep and netns
This patch is to add reconf_enable field in all of asoc ep and netns
to indicate if they support stream reset.
When initializing, asoc reconf_enable get the default value from ep
reconf_enable which is from netns netns reconf_enable by default.
It is also to add reconf_capable in asoc peer part to know if peer
supports reconf_enable, the value is set if ext params have reconf
chunk support when processing init chunk, just as rfc6525 section
5.1.1 demands.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/netns')
-rw-r--r-- | include/net/netns/sctp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/netns/sctp.h b/include/net/netns/sctp.h index c501d67172b1..b7871d018354 100644 --- a/include/net/netns/sctp.h +++ b/include/net/netns/sctp.h @@ -118,6 +118,9 @@ struct netns_sctp { /* Flag to indicate if PR-SCTP is enabled. */ int prsctp_enable; + /* Flag to indicate if PR-CONFIG is enabled. */ + int reconf_enable; + /* Flag to idicate if SCTP-AUTH is enabled */ int auth_enable; |