Linux 提供的头文件“/usr/include/linux/socket.h”包含支持的地址族和协议族的定义:
/* Supported address families. */
#define AF_UNSPEC 0
....
/* Protocol families, same as address families. */
#define PF_UNSPEC AF_UNSPEC
...
但是为什么它没有定义套接字类型呢?
我可以在“/usr/include/bits/socket.h”中找到它的定义为
enum sock_type {
SOCK_DGRAM = 1,
SOCK_STREAM = 2,
SOCK_RAW = 3,
SOCK_RDM = 4,
SOCK_SEQPACKET = 5,
SOCK_DCCP = 6,
SOCK_PACKET = 10,
};
我想知道为什么Linux提供的头文件中没有定义这些?