Question
socket connection iOS to Desktop [HELP]
Has anyone used this?
I can get it working when both client and server are running on my laptop. As soon as I put the client on my iPhone it will not connect.
on the server I am using
| server.bind(7934); |
server.listen();
on the client I am using
socket.connect("127.0.0.1", 7934);
I've tried using 0.0.0.0 and also tried using my public IP address
I have no clue how to get this to work.
