From 3d4583c3fba8989a596506619277ecd68768d9ab Mon Sep 17 00:00:00 2001 From: Szabolcs Nagy Date: Thu, 25 Jul 2013 00:22:05 +0000 Subject: add protocol families PF_IB and PF_VSOCK to socket.h linux commit 8d36eb01da5d371feffa280e501377b5c450f5a5 (2013-05-29) added PF_IB for InfiniBand linux commit d021c344051af91f42c5ba9fdedc176740cbd238 (2013-02-06) added PF_VSOCK for VMware sockets --- include/sys/socket.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/sys/socket.h b/include/sys/socket.h index d6cba7c6..08488c8b 100644 --- a/include/sys/socket.h +++ b/include/sys/socket.h @@ -82,6 +82,7 @@ struct linger #define PF_PPPOX 24 #define PF_WANPIPE 25 #define PF_LLC 26 +#define PF_IB 27 #define PF_CAN 29 #define PF_TIPC 30 #define PF_BLUETOOTH 31 @@ -93,7 +94,8 @@ struct linger #define PF_CAIF 37 #define PF_ALG 38 #define PF_NFC 39 -#define PF_MAX 40 +#define PF_VSOCK 40 +#define PF_MAX 41 #define AF_UNSPEC PF_UNSPEC #define AF_LOCAL PF_LOCAL @@ -125,6 +127,7 @@ struct linger #define AF_PPPOX PF_PPPOX #define AF_WANPIPE PF_WANPIPE #define AF_LLC PF_LLC +#define AF_IB PF_IB #define AF_CAN PF_CAN #define AF_TIPC PF_TIPC #define AF_BLUETOOTH PF_BLUETOOTH @@ -136,6 +139,7 @@ struct linger #define AF_CAIF PF_CAIF #define AF_ALG PF_ALG #define AF_NFC PF_NFC +#define AF_VSOCK PF_VSOCK #define AF_MAX PF_MAX #ifndef SO_DEBUG -- cgit v1.2.1