summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorJelle Raaijmakers <jelle@gmta.nl>2021-06-04 01:47:51 +0200
committerAndreas Kling <kling@serenityos.org>2021-06-04 10:39:41 +0200
commite483de93cef8651cb41a8b9bf7fbccfb25787774 (patch)
treedb6d9a1075d21efbfa59f9697c31fbbf8e13afd4 /Userland/Libraries
parent7f4a1bc11e49997280bf5f10b9dbf6c60db1c3e1 (diff)
downloadserenity-e483de93cef8651cb41a8b9bf7fbccfb25787774.zip
LibC: Define `MSG_OOB`
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibC/sys/socket.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/sys/socket.h b/Userland/Libraries/LibC/sys/socket.h
index 0ff9aaff14..254a752dd9 100644
--- a/Userland/Libraries/LibC/sys/socket.h
+++ b/Userland/Libraries/LibC/sys/socket.h
@@ -47,6 +47,7 @@ __BEGIN_DECLS
#define MSG_TRUNC 0x1
#define MSG_CTRUNC 0x2
#define MSG_PEEK 0x4
+#define MSG_OOB 0x8
#define MSG_DONTWAIT 0x40
typedef uint16_t sa_family_t;