aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYi Kong <yikong@google.com>2024-02-07 04:13:41 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2024-02-07 04:13:41 +0000
commit872099a075293e69f8673d695362f0446008fe79 (patch)
tree60e1f7e5aeefaba8124ff726ed942f83c6fad30b
parente0f72e00557b09796a33ee72424c6bdadcc92153 (diff)
parent13b39ee0bce5ff416415ec60f22914c3eb273a18 (diff)
downloadx86_64-w64-mingw32-4.8-master.tar.gz
Import afunix.h from MinGW am: 13b39ee0bcHEADndk-r27-releasemastermainemu-34-2-dev
Original change: https://android-review.googlesource.com/c/platform/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/+/2952707 Change-Id: I6a65b1ea5f6473517ac0971d9090c447788fbd04 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--x86_64-w64-mingw32/include/afunix.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/x86_64-w64-mingw32/include/afunix.h b/x86_64-w64-mingw32/include/afunix.h
new file mode 100644
index 00000000..8a4f05f5
--- /dev/null
+++ b/x86_64-w64-mingw32/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_ */