diff options
author | David S. Miller <davem@davemloft.net> | 2019-08-20 04:27:29 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-08-20 04:27:29 +0300 |
commit | 5483ecefe9602502441b0b76968f9c4f888ad242 (patch) | |
tree | 2d4274ee809c8bf6a22e1b96a32f5065397586cc /include/net/sctp/structs.h | |
parent | af809709e9df2a44137429ba3694c339a11b710d (diff) | |
parent | 2f7576347cf3dd993f1ffe5e6018b4b764319c52 (diff) | |
download | linux-5483ecefe9602502441b0b76968f9c4f888ad242.tar.xz |
Merge branch 'sctp-support-per-endpoint-auth-and-asconf-flags'
Xin Long says:
====================
sctp: support per endpoint auth and asconf flags
This patchset mostly does 3 things:
1. add per endpint asconf flag and use asconf flag properly
and add SCTP_ASCONF_SUPPORTED sockopt.
2. use auth flag properly and add SCTP_AUTH_SUPPORTED sockopt.
3. remove the 'global feature switch' to discard chunks.
====================
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 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/sctp/structs.h b/include/net/sctp/structs.h index ba5c4f6eede5..daac1eff18c9 100644 --- a/include/net/sctp/structs.h +++ b/include/net/sctp/structs.h @@ -1325,6 +1325,7 @@ struct sctp_endpoint { __u8 auth_enable:1, intl_enable:1, prsctp_enable:1, + asconf_enable:1, reconf_enable:1; __u8 strreset_enable; |