socklen_t在windows和linux平台下的头文件定义

windows平台下:

文件:#include<ws2tcpip.h>

linux平台下
下面两个头文件都有定义
1)#include <sys/socket.h>
2)#include <unistd.h>

详细定义:typedef int socklen_t;

猜你喜欢

转载自blog.csdn.net/zxl_1996/article/details/79152427