about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2022-01-17 10:21:34 +0100
committerAurelien Jarno <aurelien@aurel32.net>2022-01-18 07:46:02 +0100
commitf10e992e8d6c61f915c711f7bcc491ad2f10b06c (patch)
tree4b7c0b48cf748971f384ab2902af8a9070633857 /include
parenta51b76b71e8190a50b0e0c0b32f313888b930108 (diff)
downloadglibc-f10e992e8d6c61f915c711f7bcc491ad2f10b06c.tar.gz
glibc-f10e992e8d6c61f915c711f7bcc491ad2f10b06c.tar.xz
glibc-f10e992e8d6c61f915c711f7bcc491ad2f10b06c.zip
socket: Add the __sockaddr_un_set function
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
(cherry picked from commit e368b12f6c16b6888dda99ba641e999b9c9643c8)
Diffstat (limited to 'include')
-rw-r--r--include/sys/un.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/sys/un.h b/include/sys/un.h
index bdbee99980..152afd9fc7 100644
--- a/include/sys/un.h
+++ b/include/sys/un.h
@@ -1 +1,13 @@
 #include <socket/sys/un.h>
+
+#ifndef _ISOMAC
+
+/* Set ADDR->sun_family to AF_UNIX and ADDR->sun_path to PATHNAME.
+   Return 0 on success or -1 on failure (due to overlong PATHNAME).
+   The caller should always use sizeof (struct sockaddr_un) as the
+   socket address length, disregaring the length of PATHNAME.
+   Only concrete (non-abstract) pathnames are supported.  */
+int __sockaddr_un_set (struct sockaddr_un *addr, const char *pathname)
+  attribute_hidden;
+
+#endif /* _ISOMAC */