(资料图片)
1、套接字错误是指网络在线错误。常见的套接字错误有很多代码,整体代码就是套接字错误对应的数字。由不同数字组成的代码可以描述为不同类型的错误。
2、一般来说可以总结为三种:端口号设置错误,服务器不处于监听状态(即服务器socketactive=true),数据包被服务器端防火墙过滤。
一、Socket 是什么
3、Socket是应用层和TCP/IP协议族通信的中间软件抽象层,是一组接口。在设计模式下,Socket实际上是一种门面模式,将复杂的TCP/IP协议族隐藏在Socket接口的背后。
4、对于用户来说,一组简单的接口就是一切,这样Socket就可以组织数据来满足指定的协议。
5、Socket Error 0- Direct Send Error Socket Error 10013- Permission Denied //c Access Denied Socket Error 10014- Bad Address //c Address Error Socket Error 10022- Invalid Parameter//Parameter Error Socket Error 10024- Too many open files//Too many open sockets Error 10035- The resource is temporarily unavailable//No data can be obtained. Socket error 10036- Operation in progress//A blocking operation is in progress. Socket error 10037- Operation is already in progress//Operation in progress:
部分 Socket 常见错误代码
5、 port number is set incorrectly; The server is not in listening state (i.e. serversocketactive=true); The packet is filtered by the firewall on the server side.
本文websocket是什么,Socket错误是什么到此分享完毕,希望对大家有所帮助。