aboutsummaryrefslogtreecommitdiff
path: root/system/include/libc/bits/socket.h
diff options
context:
space:
mode:
authorBruce Mitchener <bruce.mitchener@gmail.com>2013-08-04 00:32:45 +0800
committerAlon Zakai <alonzakai@gmail.com>2013-09-13 10:07:02 -0700
commit5c6e1633d218bd5b9c5077634829eb14d326308f (patch)
tree50a4fd55b51a0fab6506addf610a666afabaec9b /system/include/libc/bits/socket.h
parent27d496610e0ef93c9805a6a1a77de3f053405c6b (diff)
Update libc headers to use musl headers.
Diffstat (limited to 'system/include/libc/bits/socket.h')
-rw-r--r--system/include/libc/bits/socket.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/system/include/libc/bits/socket.h b/system/include/libc/bits/socket.h
new file mode 100644
index 00000000..36febbc2
--- /dev/null
+++ b/system/include/libc/bits/socket.h
@@ -0,0 +1,17 @@
+struct msghdr
+{
+ void *msg_name;
+ socklen_t msg_namelen;
+ struct iovec *msg_iov;
+ int msg_iovlen;
+ void *msg_control;
+ socklen_t msg_controllen;
+ int msg_flags;
+};
+
+struct cmsghdr
+{
+ socklen_t cmsg_len;
+ int cmsg_level;
+ int cmsg_type;
+};