aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPirama Arumuga Nainar <pirama@google.com>2024-02-06 15:32:05 -0800
committerPirama Arumuga Nainar <pirama@google.com>2024-02-06 15:32:57 -0800
commit7b49b7fc39f3aa9ee0b8775e41f68a0c0adcc15b (patch)
tree083754d5edf015940d5fde31cdac3ae1e62c2343
parent3b51eb62baf9699b3c9727d045a3673008df85b5 (diff)
downloadmingw-main.tar.gz
Cherry-pick patch adding afunix.hHEADmastermain
From https://www.mail-archive.com/mingw-w64-public@lists.sourceforge.net/msg18854.html [PATCH] headers: Add afunix.h file. Change-Id: Ic5e70fee2b219be42d120cc6a5f8ada54bb66f9e Signed-off-by: Biswapriyo Nath <nathbap...@gmail.com>
-rw-r--r--mingw-w64-v6.x/mingw-w64-headers/include/afunix.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/mingw-w64-v6.x/mingw-w64-headers/include/afunix.h b/mingw-w64-v6.x/mingw-w64-headers/include/afunix.h
new file mode 100644
index 0000000..8a4f05f
--- /dev/null
+++ b/mingw-w64-v6.x/mingw-w64-headers/include/afunix.h
@@ -0,0 +1,19 @@
+/**
+ * This file has no copyright assigned and is placed in the Public Domain.
+ * This file is part of the mingw-w64 runtime package.
+ * No warranty is given; refer to the file DISCLAIMER.PD within this package.
+ */
+
+#ifndef _AFUNIX_
+#define _AFUNIX_
+
+#define UNIX_PATH_MAX 108
+
+typedef struct sockaddr_un {
+ ADDRESS_FAMILY sun_family;
+ char sun_path[UNIX_PATH_MAX];
+} SOCKADDR_UN, *PSOCKADDR_UN;
+
+#define SIO_AF_UNIX_GETPEERPID _WSAIOR(IOC_VENDOR, 256)
+
+#endif /* _AFUNIX_ */