如何使用绑定的连接和监听套接字测试winsock应用程序?
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然
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.确保您的两个应用程序实例配置为使用不同的端口。
Make sure your two app instances are configured up to use different ports.