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 /
backend /
cffi /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-03-29 05:07
__init__.py
616
B
-rw-r--r--
2018-02-10 08:02
_cdefs.h
1.94
KB
-rw-r--r--
2018-02-10 08:02
_cffi.py
3.79
KB
-rw-r--r--
2018-02-10 08:02
_poll.py
2.77
KB
-rw-r--r--
2018-02-10 08:02
_verify.c
208
B
-rw-r--r--
2018-02-10 08:02
constants.py
357
B
-rw-r--r--
2018-02-10 08:02
context.py
2.52
KB
-rw-r--r--
2018-02-10 08:02
devices.py
580
B
-rw-r--r--
2018-02-10 08:02
error.py
353
B
-rw-r--r--
2018-02-10 08:02
message.py
1.36
KB
-rw-r--r--
2018-02-10 08:02
socket.py
8.49
KB
-rw-r--r--
2018-02-10 08:02
utils.py
1.45
KB
-rw-r--r--
2018-02-10 08:02
Save
Rename
# coding: utf-8 """zmq device functions""" # Copyright (C) PyZMQ Developers # Distributed under the terms of the Modified BSD License. from ._cffi import C, ffi from .socket import Socket from .utils import _retry_sys_call def device(device_type, frontend, backend): return proxy(frontend, backend) def proxy(frontend, backend, capture=None): if isinstance(capture, Socket): capture = capture._zmq_socket else: capture = ffi.NULL _retry_sys_call(C.zmq_proxy, frontend._zmq_socket, backend._zmq_socket, capture) __all__ = ['device', 'proxy']