Winsock 端口侦听器
我做了一个TCP端口监听器。当我使用带有 127.1.1.0
的客户端和侦听器绑定接受连接的端口在本地连接到它时,它可以工作。你能让它监听通过该端口连接的任何IP吗?是否可以监听从服务器接受的第二个客户端端口?
I've done a TCP port listener. it works when i connect to it locally using client with 127.1.1.0
and a port that listener is bound to accept connection. can you make it to listen to any IP that connects through that port and would it be possible to listen to a second client port that is accepting from server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要指定 INADDR_ANY 进行绑定。您不能将同一个套接字绑定到多个端口,但您当然可以创建多个套接字,每个套接字侦听不同的端口。
You need to specify INADDR_ANY to bind. You cannot bind the same socket to multiple ports, but you can certainly create multiple sockets, each listening to a different port.