应该使用什么IP地址从其他计算机连接到在我的PC上运行的服务器?在我的服务器中,我调用zmq_bind侦听所有传入的连接,如下所示:
zmq_bind(socket, "tcp://*:12781");
在我的客户端中,我尝试通过以下方式连接到服务器:
string IP = "127.0.0.1"; //what should be here?
string connection_string = "tcp://" + IP + ":12781";
zmq_connect(socket, connection_string);
当服务器和客户端在同一台计算机(IP为“ localhost”,“ 127.0.0.1”或“ 192.168.1.13”)上运行时,我的程序已经工作。从其他计算机连接时应使用什么IP?我已经尝试过我的IPV4,发现here,但是没有用。
感谢您的帮助。