摘要:
在bind邦定时,通常会出现bind:Address alreasy is use错误。 此错误可以用setsockopt函数避免 int setsockopt(int sockfd,int level,int optname,const void *optval,socklen_t optlen) 阅读全文
摘要:
基于TCP-服务器 1,创建一个socket套接字 int socket(int domain,int type,int protocol) domain:IP地址族,AF_INET(IPv4)、AF_INET6(IPv6)、AF_LOCAL/AF_UNIX(本地) type:套接字,流式套接字(S 阅读全文
摘要:
出现此问题在于,listen函数在socket函数和bind函数之间。 例: 如此操作时,容易出现bind: Invalid argument 阅读全文