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
{{ message }}
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
My understanding is that when an RTCSctpTransport object is constructed, the value of RTCSctpTransportState is new. Now that start method causes an SCTP INIT request to be sent (rather than this happening upon construction), calling start would cause the value of RTCSctpTransportState to transition to connecting, correct?
What if an incoming SCTP INIT request is received prior to the start method being called? Does the RTCSctpTransport object respond or not? Prior to moving sending of the SCTP INIT to the start method, the RTCSctpTransport object would respond upon construction, correct? But now if the RTCSctpTransport object responds prior to calling the start method, this would imply that RTCSctpTransportState could reach the connected state prior to calling the start method, which seems odd.
So I'm inclined to believe that the RTCSctpTransport object cannot respond to an incoming SCTP INIT prior to calling the start method, and therefore that the the connected state cannot be reached prior to calling the start method.
My understanding is that when an
RTCSctpTransportobject is constructed, the value ofRTCSctpTransportStateisnew. Now thatstartmethod causes an SCTP INIT request to be sent (rather than this happening upon construction), callingstartwould cause the value ofRTCSctpTransportStateto transition toconnecting, correct?What if an incoming SCTP INIT request is received prior to the
startmethod being called? Does theRTCSctpTransportobject respond or not? Prior to moving sending of the SCTP INIT to the start method, theRTCSctpTransportobject would respond upon construction, correct? But now if theRTCSctpTransportobject responds prior to calling thestartmethod, this would imply thatRTCSctpTransportStatecould reach theconnectedstate prior to calling thestartmethod, which seems odd.So I'm inclined to believe that the
RTCSctpTransportobject cannot respond to an incoming SCTP INIT prior to calling thestartmethod, and therefore that the theconnectedstate cannot be reached prior to calling thestartmethod.Does this make sense?