/opt/imh-python/lib/python3.9/site-packages/zmq/utils
NameSizeModeActions
__pycache__/-0755rm
buffers.pxd98190644editdlrm
compiler.json2950644editdlrm
config.json2650644editdlrm
constant_names.py113940644editdlrm
garbage.py59350644editdlrm
getpid_compat.h1030644editdlrm
interop.py7090644editdlrm
ipcmaxlen.h4540644editdlrm
jsonapi.py13930644editdlrm
monitor.py20880644editdlrm
mutex.h16250644editdlrm
pyversion_compat.h13240644editdlrm
sixcerpt.py18860644editdlrm
strtypes.py12020644editdlrm
win32.py51240644editdlrm
z85.py20000644editdlrm
zmq_compat.h31770644editdlrm
zmq_constants.h186950644editdlrm
__init__.py00644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/zmq/utils/ipcmaxlen.h (454B)
/* 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 COPYING.BSD, distributed as part of this software. */ #if defined(HAVE_SYS_UN_H) #include "sys/un.h" 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