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
/
lib /
python3.6 /
site-packages /
salt /
transport /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
mixins
[ DIR ]
drwxr-xr-x
2022-10-11 05:09
__init__.py
1.42
KB
-rw-r--r--
2022-05-16 09:16
client.py
7.52
KB
-rw-r--r--
2022-05-16 09:16
frame.py
2.76
KB
-rw-r--r--
2022-05-16 09:16
ipc.py
27.31
KB
-rw-r--r--
2022-05-16 09:16
local.py
1.37
KB
-rw-r--r--
2022-05-16 09:16
server.py
3.15
KB
-rw-r--r--
2022-05-16 09:16
tcp.py
64.04
KB
-rw-r--r--
2022-05-16 09:16
zeromq.py
51.05
KB
-rw-r--r--
2022-05-16 09:16
Save
Rename
""" Encapsulate the different transports available to Salt. """ import logging import warnings log = logging.getLogger(__name__) # Supress warnings when running with a very old pyzmq. This can be removed # after we drop support for Ubuntu 16.04 and Debian 9 warnings.filterwarnings( "ignore", message="IOLoop.current expected instance.*", category=RuntimeWarning ) def iter_transport_opts(opts): """ Yield transport, opts for all master configured transports """ transports = set() for transport, opts_overrides in opts.get("transport_opts", {}).items(): t_opts = dict(opts) t_opts.update(opts_overrides) t_opts["transport"] = transport transports.add(transport) yield transport, t_opts if opts["transport"] not in transports: yield opts["transport"], opts class MessageClientPool: def __init__(self, tgt, opts, args=None, kwargs=None): sock_pool_size = opts["sock_pool_size"] if "sock_pool_size" in opts else 1 if sock_pool_size < 1: log.warning( "sock_pool_size is not correctly set, the option should be " "greater than 0 but is instead %s", sock_pool_size, ) sock_pool_size = 1 if args is None: args = () if kwargs is None: kwargs = {} self.message_clients = [tgt(*args, **kwargs) for _ in range(sock_pool_size)]