diff options
| author | Szabolcs Nagy <nsz@port70.net> | 2013-07-25 00:22:05 +0000 | 
|---|---|---|
| committer | Szabolcs Nagy <nsz@port70.net> | 2013-07-25 00:22:05 +0000 | 
| commit | 3d4583c3fba8989a596506619277ecd68768d9ab (patch) | |
| tree | e0db0a1df6c42774a88c0554994df9f28ac8ce37 | |
| parent | b54f169bfd2e1ca39d7e16345195418ec955df4e (diff) | |
| download | musl-3d4583c3fba8989a596506619277ecd68768d9ab.tar.gz | |
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
| -rw-r--r-- | include/sys/socket.h | 6 | 
1 files changed, 5 insertions, 1 deletions
| 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 | 
