PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/zmq/utils/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/zmq/utils/ipcmaxlen.h |
/* Platform-independant detection of IPC path max length Copyright (c) 2012 Godefroid Chapelle Distributed under the terms of the New BSD License. The full license is in the file LICENSE.BSD, distributed as part of this software. */ #pragma once #if defined(HAVE_SYS_UN_H) #if defined _MSC_VER #include <afunix.h> #else #include <sys/un.h> #endif int get_ipc_path_max_len(void) { struct sockaddr_un *dummy; return sizeof(dummy->sun_path) - 1; } #else int get_ipc_path_max_len(void) { return 0; } #endif