摘要:
hstrerror返回网络错误原因的描述字符串相关函数:herror表头文件:#include <netdb.h>函数定义:const char *hstrerror(int err)函数说明:hstrerror()用来依参数err的错误代码来查询socket错误原因的描述字符串, 然后将该字符串指针返回返回值:返回描述错误原因的字符串指针范例:/*显示错误代码0到5的错误原因描述*/... 阅读全文
摘要:
微软msdn的Winsock 函数库链接http://msdn.microsoft.com/zh-cn/library/ms741394.aspxaccept接受socket连线相关函数:socket, bind, listen, connect表头文件:#include <sys/types.h>#include <sys/socket.h>函数定义:int accept... 阅读全文