forked from Minki/linux
sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_EVENT sockopt
A similar fix as Patch "sctp: fix ignoring asoc_id for tcp-style sockets on
SCTP_DEFAULT_SEND_PARAM sockopt" on SCTP_EVENT sockopt.
Fixes: d251f05e3b
("sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_EVENT sockopt")
Signed-off-by: Xin Long <lucien.xin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9430ff9926
commit
995186193f
@ -4574,6 +4574,9 @@ static int sctp_setsockopt_event(struct sock *sk, char __user *optval,
|
||||
if (asoc)
|
||||
return sctp_assoc_ulpevent_type_set(¶m, asoc);
|
||||
|
||||
if (sctp_style(sk, TCP))
|
||||
param.se_assoc_id = SCTP_FUTURE_ASSOC;
|
||||
|
||||
if (param.se_assoc_id == SCTP_FUTURE_ASSOC ||
|
||||
param.se_assoc_id == SCTP_ALL_ASSOC)
|
||||
sctp_ulpevent_type_set(&sp->subscribe,
|
||||
|
Loading…
Reference in New Issue
Block a user