Replies: 2 comments 7 replies
-
Hi, are you running your server as administrator? |
Beta Was this translation helpful? Give feedback.
7 replies
-
Ok. Your listener then has to be on |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Local connections using this works fine:
server1 = new SimpleTcpServer("127.0.0.1:9000");
Client1 = new SimpleTcpClient("127.0.0.1:9000");
External connections using this code don't work:
IP of the PC that hosts the server: 67.231.135.128
server1 = new SimpleTcpServer("0.0.0.0:9000");
Client1 = new SimpleTcpClient("67.231.135.128:9000");
Is this code correct?
Windows Firewalls are disabled.
What else could be blocking the connection?
Beta Was this translation helpful? Give feedback.
All reactions