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
Note: SCTP does not support a half-open state (like TCP) wherein one side may continue sending data while the other end is closed.
socket.connect(options[, connectListener])
options [Object]
connectListener [Function] Common parameter of socket.connect() methods. Will be added as a listener for the 'connect' event once.
I use SCTP over plain UDP so I create the sctp.Socket by calling socket.connect(). Can I pass unordered: false to options in connect()? The docs do not say that.
BTW may I know the status of unordered SCTP streams? AFAIK being "ordered" or "unordered" is not a property of a SCTP socket (SCTP association) but a per SCTP stream property. You can have N SCTP streams over the same SCP socket (association), being some of them ordered and some others unordered.
The text was updated successfully, but these errors were encountered:
According to the README:
I use SCTP over plain UDP so I create the
sctp.Socket
by callingsocket.connect()
. Can I passunordered: false
tooptions
inconnect()
? The docs do not say that.BTW may I know the status of unordered SCTP streams? AFAIK being "ordered" or "unordered" is not a property of a SCTP socket (SCTP association) but a per SCTP stream property. You can have N SCTP streams over the same SCP socket (association), being some of them ordered and some others unordered.
The text was updated successfully, but these errors were encountered: