winsock套接字错误
vb6 代码中出现以下错误:
1) 错误 (10022) 套接字未绑定,无效地址或在接受之前未调用侦听
2) 错误 10048 - 地址正在使用
followin error in vb6 code:
1) Error(10022) Socket not bound, invalid address or listen is not invoked prior to accept
2) Error 10048 - Address in Use
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您没有将 TCP 控件绑定到端口,而是调用 .Listen 方法时,会发生错误 #1
当
当您尝试侦听已被其他程序或进程侦听的端口时,会发生错误 #2。
Error #1 occurs when you haven't bound your TCP control to a port, but called .Listen method
Error #2 occurs when you attempted to listen on a port that is already being listened to by another program or process.