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
When changing the port of an OSCUdpServer and immediately calling startListening() the server will not be in a listening state. This is because isListening is only set to false when the socket receives udpSocketDidClose(_ sock: GCDAsyncUdpSocket, withError error: Error?) and the startListening() method returns early if isListening is true.
This will be the same for OSCUdpPeer but with isRunning.
TCP objects are working a little differently but should require some investigation...
The text was updated successfully, but these errors were encountered:
When changing the port of an
OSCUdpServer
and immediately callingstartListening()
the server will not be in a listening state. This is becauseisListening
is only set to false when the socket receivesudpSocketDidClose(_ sock: GCDAsyncUdpSocket, withError error: Error?)
and thestartListening()
method returns early ifisListening
is true.OSCUdpPeer
but withisRunning
.The text was updated successfully, but these errors were encountered: