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 UDPSocket type socket can bind to the same port repeatedly.
Two UDPSocket type sockets cannot bind to the same port at the same time.
A TCPServer type socket cannot bind to the same port repeatedly.
Two TCPServer type sockets cannot bind to the same port at the same time.
A TCPServer type socket and a UDPSocket type socket can bind to the same port at the same time. After that each socket behaves as described previously.
Mostly the last one seems like it could potentially cause issues.