Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a842e65b authored by Xin Long's avatar Xin Long Committed by David S. Miller
Browse files

sctp: fix ignoring asoc_id for tcp-style sockets on SCTP_DEFAULT_SNDINFO sockopt



A similar fix as Patch "sctp: fix ignoring asoc_id for tcp-style sockets on
SCTP_DEFAULT_SEND_PARAM sockopt" on SCTP_DEFAULT_SNDINFO sockopt.

Fixes: 92fc3bd9 ("sctp: use SCTP_FUTURE_ASSOC and add SCTP_CURRENT_ASSOC for SCTP_DEFAULT_SNDINFO sockopt")
Signed-off-by: default avatarXin Long <lucien.xin@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 8e2614fc
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -3087,6 +3087,9 @@ static int sctp_setsockopt_default_sndinfo(struct sock *sk,
		return 0;
	}

	if (sctp_style(sk, TCP))
		info.snd_assoc_id = SCTP_FUTURE_ASSOC;

	if (info.snd_assoc_id == SCTP_FUTURE_ASSOC ||
	    info.snd_assoc_id == SCTP_ALL_ASSOC) {
		sp->default_stream = info.snd_sid;