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
A follow-up of a discussion in #3062:
Trying to set the listener callback on a socket that is in the listening state results in an error SRT_ECONNSOCK (MJ_NOTSUP + MN_ISCONNECTED). The textual representation of this error is "Cannot do this operation on a CONNECTED socket".
In this case, the error message is misleading. The socket is not in a connected state but in a listening state. The error message must be broader or separate errors must be defined for "CONNECTING" and "LISTENING" states. The latter requires API change.
The text was updated successfully, but these errors were encountered:
A follow-up of a discussion in #3062:
Trying to set the listener callback on a socket that is in the listening state results in an error
SRT_ECONNSOCK
(MJ_NOTSUP
+MN_ISCONNECTED
). The textual representation of this error is "Cannot do this operation on a CONNECTED socket".In this case, the error message is misleading. The socket is not in a connected state but in a listening state. The error message must be broader or separate errors must be defined for "CONNECTING" and "LISTENING" states. The latter requires API change.
The text was updated successfully, but these errors were encountered: