Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
ovs /
__pycache__ /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.cpython-310.pyc
139
B
-rw-r--r--
2026-06-23 20:31
daemon.cpython-310.pyc
14.42
KB
-rw-r--r--
2026-06-23 20:31
dirs.cpython-310.pyc
581
B
-rw-r--r--
2026-06-23 20:31
fatal_signal.cpython-310.pyc
4.62
KB
-rw-r--r--
2026-06-23 20:31
fcntl_win.cpython-310.pyc
904
B
-rw-r--r--
2026-06-23 20:31
json.cpython-310.pyc
14.95
KB
-rw-r--r--
2026-06-23 20:31
jsonrpc.cpython-310.pyc
15.69
KB
-rw-r--r--
2026-06-23 20:31
ovsuuid.cpython-310.pyc
1.73
KB
-rw-r--r--
2026-06-23 20:31
poller.cpython-310.pyc
7.85
KB
-rw-r--r--
2026-06-23 20:31
process.cpython-310.pyc
1020
B
-rw-r--r--
2026-06-23 20:31
reconnect.cpython-310.pyc
22.23
KB
-rw-r--r--
2026-06-23 20:31
socket_util.cpython-310.pyc
8.29
KB
-rw-r--r--
2026-06-23 20:31
stream.cpython-310.pyc
22.2
KB
-rw-r--r--
2026-06-23 20:31
timeval.cpython-310.pyc
1.48
KB
-rw-r--r--
2026-06-23 20:31
util.cpython-310.pyc
2.61
KB
-rw-r--r--
2026-06-23 20:31
version.cpython-310.pyc
156
B
-rw-r--r--
2026-06-23 20:31
vlog.cpython-310.pyc
12.88
KB
-rw-r--r--
2026-06-23 20:31
winutils.cpython-310.pyc
4.87
KB
-rw-r--r--
2026-06-23 20:31
Save
Rename
o ��e0 � @ sT d dl Z d dlZ d dlZe j�ejd �ZdZdd� Zdd� Z ddd�Z d d � ZdS )� N���c C sl |� d�s|�d�dkr|S | du s| dkr'zt�� } W n ty& Y dS w | �d�r0| | S d| |f S )a� If 'file_name' starts with '/', returns a copy of 'file_name'. Otherwise, returns an absolute path to 'file_name' considering it relative to 'dir_', which itself must be absolute. 'dir_' may be None or the empty string, in which case the current working directory is used. Returns None if 'dir_' is None and getcwd() fails. This differs from os.path.abspath() in that it will never change the meaning of a file name. On Windows an absolute path contains ':' ( i.e: C:\ ) �/�:r N� z%s/%s)� startswith�find�os�getcwd�OSError�endswith)�dir_� file_name� r �*/usr/lib/python3/dist-packages/ovs/util.py� abs_file_name s � r c C s. | sdS | dkr t �| �S | tkrdS d| S )z�Many OVS functions return an int which is one of: - 0: no error yet - >0: errno value - EOF: end of file (not necessarily an error; depends on the function called) Returns the appropriate human-readable string.r r zEnd of filez***unknown return value: %s***)r �strerror�EOF)�retvalr r r �ovs_retval_to_string2 s r c C sF dt |f }| r|dt| � 7 }tj�d| � |r!|�|� dS dS )a6 Prints 'message' on stderr and emits an ERROR level log message to 'vlog' if supplied. If 'err_no' is nonzero, then it is formatted with ovs_retval_to_string() and appended to the message inside parentheses. 'message' should not end with a new-line, because this function will add one itself.z%s: %sz (%s)z%s N)�PROGRAM_NAMEr �sys�stderr�write�err)�err_no�message�vlog�err_msgr r r � ovs_errorD s �r c O s t | i |�� t�d� dS )at Prints 'message' on stderr and emits an ERROR level log message to 'vlog' if supplied. If 'err_no' is nonzero, then it is formatted with ovs_retval_to_string() and appended to the message inside parentheses. Then, terminates with exit code 1 (indicating a failure). 'message' should not end with a new-line, because this function will add one itself.� N)r r �exit)�args�kwargsr r r � ovs_fatalU s r# )N)r �os.pathr �path�basename�argvr r r r r r# r r r r �<module> s