sctp: introduce SCTP_FUTURE/CURRENT/ALL_ASSOC
This patch is to add 3 constants SCTP_FUTURE_ASSOC, SCTP_CURRENT_ASSOC and SCTP_ALL_ASSOC for reserved assoc_ids, as defined in rfc6458#section-7.2. And add the process for them when doing lookup and inserting in sctp_id2assoc and sctp_assoc_set_id. Signed-off-by: Xin Long <lucien.xin@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
bde5272643
commit
80df2704a3
@@ -248,7 +248,7 @@ struct sctp_association *sctp_id2assoc(struct sock *sk, sctp_assoc_t id)
|
||||
}
|
||||
|
||||
/* Otherwise this is a UDP-style socket. */
|
||||
if (!id || (id == (sctp_assoc_t)-1))
|
||||
if (id <= SCTP_ALL_ASSOC)
|
||||
return NULL;
|
||||
|
||||
spin_lock_bh(&sctp_assocs_id_lock);
|
||||
|
Reference in New Issue
Block a user