char str[INET_ADDRSTRLEN]; ptr = inet_ntop(AF_INET, &foo.sin_addr, str, sizeof(str)); 代替代码 ptr = inet_ntoa(foo.sin_addr); 下面给出只支持IPv4的inet_pton函数的简单定义和只支持IPv4的inet_ntop函数的简化版本。 int inet_pton(int family,constchar *strptr,void *addrptr) { if(family...
2019-12-10 21:00 −一、Socket API函数 Linux 下使用 <sys/socket.h> 头文件中 socket() 函数来创建套接字,原型为: int socket(int af, int type, int protocol);其中:af 为地址族(Address Family),即:IP 地址... LiScott 0 194 Java实现一个简单的网络聊天程序 ...