We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, I try to start to ServerSockets with two different ports like this:
ws = new WebSocketServer(12345, IPAddress.Any) { OnConnected = OnConnected, OnDisconnect = OnDisconnect, TimeOut = new TimeSpan(0, 0, 5) }; ws2 = new WebSocketServer(12346, IPAddress.Any) { OnConnected = OnConnected2, OnDisconnect = OnDisconnect2, TimeOut = new TimeSpan(0, 0, 5) };
And I get the error : "Each socket address (protocol, network address or port) may be used only once."
What can I do for this problem?
The text was updated successfully, but these errors were encountered:
+1
Sorry, something went wrong.
No branches or pull requests
Hello,
I try to start to ServerSockets with two different ports like this:
And I get the error : "Each socket address (protocol, network address or port) may be used only once."
What can I do for this problem?
The text was updated successfully, but these errors were encountered: