diff options
author | Xin Long <lucien.xin@gmail.com> | 2018-11-18 11:08:52 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-19 23:25:43 +0300 |
commit | a1e3a0590f9bd232f3a03fd87226a4a99bd5ec92 (patch) | |
tree | 297cba2473cc25cc11b9aa5d5bc49a3b6b3d9e81 /net/sctp/associola.c | |
parent | 2cc0eeb67636e0339ad7b6cdfa305f63983642af (diff) | |
download | linux-a1e3a0590f9bd232f3a03fd87226a4a99bd5ec92.tar.xz |
sctp: add subscribe per asoc
The member subscribe should be per asoc, so that sockopt SCTP_EVENT
in the next patch can subscribe a event from one asoc only.
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/associola.c')
-rw-r--r-- | net/sctp/associola.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sctp/associola.c b/net/sctp/associola.c index 6a28b96e779e..685c7ef11eb4 100644 --- a/net/sctp/associola.c +++ b/net/sctp/associola.c @@ -135,6 +135,8 @@ static struct sctp_association *sctp_association_init( */ asoc->max_burst = sp->max_burst; + asoc->subscribe = sp->subscribe; + /* initialize association timers */ asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_COOKIE] = asoc->rto_initial; asoc->timeouts[SCTP_EVENT_TIMEOUT_T1_INIT] = asoc->rto_initial; |