diff options
author | Xin Long <lucien.xin@gmail.com> | 2016-07-09 19:47:40 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-07-11 13:25:38 -0700 |
commit | 28aa4c26fce2202db8d42ae76b639ca1d9a23d25 (patch) | |
tree | 821624ddb932078c84235eb5b852e282891dbbf6 /net/sctp/endpointola.c | |
parent | bac65c4b39ca1fe13b3a82fb49b71fc351305464 (diff) | |
download | talos-obmc-linux-28aa4c26fce2202db8d42ae76b639ca1d9a23d25.tar.gz talos-obmc-linux-28aa4c26fce2202db8d42ae76b639ca1d9a23d25.zip |
sctp: add SCTP_PR_SUPPORTED on sctp sockopt
According to section 4.5 of rfc7496, prsctp_enable should be per asoc.
We will add prsctp_enable to both asoc and ep, and replace the places
where it used net.sctp->prsctp_enable with asoc->prsctp_enable.
ep->prsctp_enable will be initialized with net.sctp->prsctp_enable, and
asoc->prsctp_enable will be initialized with ep->prsctp_enable. We can
also modify it's value through sockopt SCTP_PR_SUPPORTED.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/endpointola.c')
-rw-r--r-- | net/sctp/endpointola.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sctp/endpointola.c b/net/sctp/endpointola.c index 9d494e35e7f9..1f03065686fe 100644 --- a/net/sctp/endpointola.c +++ b/net/sctp/endpointola.c @@ -163,6 +163,7 @@ static struct sctp_endpoint *sctp_endpoint_init(struct sctp_endpoint *ep, */ ep->auth_hmacs_list = auth_hmacs; ep->auth_chunk_list = auth_chunks; + ep->prsctp_enable = net->sctp.prsctp_enable; return ep; |