如何使用绑定的连接和监听套接字测试winsock应用程序?

发布于 2024-09-25 17:33:37 字数 162 浏览 5 评论 0原文

我正在尝试使用 winsock 连接两个相同的应用程序,但连接端必须使用 ConnectEx() ,这需要绑定套接字。所以问题是,当我尝试使用 ip 127.0.0.1 环回时,我收到错误 10048(WSAEADDRINUSE)。

有什么办法可以解决这个问题吗?

感谢您的帮助

I am trying to connect two of the same app with winsock, but the connecting side has to use ConnectEx() which requires a bound socket. So the problem is that when I try to loop back using ip 127.0.0.1, I get error 10048(WSAEADDRINUSE).

Is there any way around this problem?

Thanks for any help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沙与沫 2024-10-02 17:33:37

虽然 ConnectEx() 需要绑定套接字,但您不需要选择端口并显式绑定它,您可以绑定到通配符地址,只需将端口保留为 0,操作系统将为您选择一个端口它通常用于出站连接。

Although ConnectEx() requires a bound socket you don't need to select a port and explicitly bind it you can bind to a wildcard address simply leave the port as 0 and the OS will select one for you as it normally does with outbound connections.

奶气 2024-10-02 17:33:37

确保您的两个应用程序实例配置为使用不同的端口。

  • 实例 1 侦听端口 X,连接到端口 Y
  • 实例 2 侦听端口 Y,连接到端口 X

Make sure your two app instances are configured up to use different ports.

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