From 29bba5d53ab3acf3f823995a85d39badb8f26053 Mon Sep 17 00:00:00 2001 From: Biswapriyo Nath <nathbap...@gmail.com> Date: Mon, 7 Jun 2021 10:25:36 +0530 Subject: [PATCH] headers: Add afunix.h file.
Signed-off-by: Biswapriyo Nath <nathbap...@gmail.com> --- mingw-w64-headers/include/afunix.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 mingw-w64-headers/include/afunix.h diff --git a/mingw-w64-headers/include/afunix.h b/mingw-w64-headers/include/afunix.h new file mode 100644 index 0000000..8a4f05f --- /dev/null +++ b/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_ */ -- 2.31.1
_______________________________________________ Mingw-w64-public mailing list Mingw-w64-public@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/mingw-w64-public