Winsock 端口侦听器

发布于 2024-10-03 21:31:00 字数 125 浏览 5 评论 0原文

我做了一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

狠疯拽 2024-10-10 21:31:00

您需要指定 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文