diff options
author | Xin Long <lucien.xin@gmail.com> | 2019-07-09 00:57:04 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-08 20:16:24 -0700 |
commit | a96701fb3534c45bd6fe5e6f6d3a91e3acc19b59 (patch) | |
tree | be56976cfbd9691bf79039fe50c95be1e119137a /include/net/sctp/structs.h | |
parent | ccf355e52a3265624b7acadd693c849d599e9b9f (diff) | |
download | linux-a96701fb3534c45bd6fe5e6f6d3a91e3acc19b59.tar.bz2 |
sctp: remove reconf_enable from asoc
asoc's reconf support is actually decided by the 4-shakehand negotiation,
not something that users can set by sockopt. asoc->peer.reconf_capable is
working for this. So remove it from asoc.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/sctp/structs.h')
-rw-r--r-- | include/net/sctp/structs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index 0767701ef362..d9e0e1a53f99 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h @@ -2051,8 +2051,7 @@ struct sctp_association { temp:1, /* Is it a temporary association? */ force_delay:1, intl_enable:1, - prsctp_enable:1, - reconf_enable:1; + prsctp_enable:1; __u8 strreset_enable; __u8 strreset_outstanding; /* request param count on the fly */ |