sys/socket.h: add PF_SMC from linux v4.11

add AF_SMC and PF_SMC for the IBM shared memory communication protocol.
new in linux commit ac7138746e14137a451f8539614cdd349153e0c0
(linux socket.h is not in uapi so this update was missed earlier)
This commit is contained in:
Szabolcs Nagy 2017-11-26 22:21:31 +00:00 committed by Rich Felker
parent 55df09bfcc
commit 709bbf5175
1 changed files with 3 additions and 1 deletions

View File

@ -108,7 +108,8 @@ struct linger {
#define PF_VSOCK 40 #define PF_VSOCK 40
#define PF_KCM 41 #define PF_KCM 41
#define PF_QIPCRTR 42 #define PF_QIPCRTR 42
#define PF_MAX 43 #define PF_SMC 43
#define PF_MAX 44
#define AF_UNSPEC PF_UNSPEC #define AF_UNSPEC PF_UNSPEC
#define AF_LOCAL PF_LOCAL #define AF_LOCAL PF_LOCAL
@ -156,6 +157,7 @@ struct linger {
#define AF_VSOCK PF_VSOCK #define AF_VSOCK PF_VSOCK
#define AF_KCM PF_KCM #define AF_KCM PF_KCM
#define AF_QIPCRTR PF_QIPCRTR #define AF_QIPCRTR PF_QIPCRTR
#define AF_SMC PF_SMC
#define AF_MAX PF_MAX #define AF_MAX PF_MAX
#ifndef SO_DEBUG #ifndef SO_DEBUG