You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Value 0. Reserved for handshake procedure. If the destination Socket ID is 0 (destination Socket ID unknown) the packet will be sent to the listening socket or to a socket that is in the rendezvous connection phase.
[1; 2^30). Single socket ID range.
(2^30; 2^31). Group socket ID range. Effectively any positive number from [1; 2^30) with bit 30 set to 1.
The most significant bit 31 (sign bit) is left unused so that checking for a value <= 0 identifies an invalid socket ID.
Some of those ranges are the SRT library limitations. The SRT protocol can potentially use the whole range except for 0 and -1.
The text was updated successfully, but these errors were encountered:
Define ranges of valid Socket ID values.
Value
0
. Reserved for handshake procedure. If the destination Socket ID is0
(destination Socket ID unknown) the packet will be sent to the listening socket or to a socket that is in the rendezvous connection phase.[1; 2^30)
. Single socket ID range.(2^30; 2^31)
. Group socket ID range. Effectively any positive number from[1; 2^30)
with bit 30 set to 1.The most significant bit 31 (sign bit) is left unused so that checking for a value <= 0 identifies an invalid socket ID.
Some of those ranges are the SRT library limitations. The SRT protocol can potentially use the whole range except for 0 and -1.
The text was updated successfully, but these errors were encountered: