aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2021-11-17 14:25:16 +0000
committerJoseph Myers <joseph@codesourcery.com>2021-11-17 14:25:16 +0000
commitbdeb7a8fa9989d18dab6310753d04d908125dc1d (patch)
tree67aad7791a447f74070785ad7002a803ab658aa0 /sysdeps/unix
parentf1bcfde3a7b1b2606ff9f267e1e4a9cd7c65497a (diff)
downloadglibc-bdeb7a8fa9989d18dab6310753d04d908125dc1d.tar
glibc-bdeb7a8fa9989d18dab6310753d04d908125dc1d.tar.gz
glibc-bdeb7a8fa9989d18dab6310753d04d908125dc1d.tar.bz2
glibc-bdeb7a8fa9989d18dab6310753d04d908125dc1d.zip
Add PF_MCTP, AF_MCTP from Linux 5.15 to bits/socket.h
Linux 5.15 adds a new address / protocol family PF_MCTP / AF_MCTP; add these constants to bits/socket.h. Tested for x86_64.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r--sysdeps/unix/sysv/linux/bits/socket.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/bits/socket.h b/sysdeps/unix/sysv/linux/bits/socket.h
index a011a8c095..7bb9e863d7 100644
--- a/sysdeps/unix/sysv/linux/bits/socket.h
+++ b/sysdeps/unix/sysv/linux/bits/socket.h
@@ -86,7 +86,8 @@ typedef __socklen_t socklen_t;
#define PF_QIPCRTR 42 /* Qualcomm IPC Router. */
#define PF_SMC 43 /* SMC sockets. */
#define PF_XDP 44 /* XDP sockets. */
-#define PF_MAX 45 /* For now.. */
+#define PF_MCTP 45 /* Management component transport protocol. */
+#define PF_MAX 46 /* For now.. */
/* Address families. */
#define AF_UNSPEC PF_UNSPEC
@@ -137,6 +138,7 @@ typedef __socklen_t socklen_t;
#define AF_QIPCRTR PF_QIPCRTR
#define AF_SMC PF_SMC
#define AF_XDP PF_XDP
+#define AF_MCTP PF_MCTP
#define AF_MAX PF_MAX
/* Socket level values. Others are defined in the appropriate headers.