Agent: Rename tcp.py to sockets_pipe.py

This commit is contained in:
Kekoa Kaaikala 2022-09-06 12:14:52 +00:00
parent 6abcaa9bd6
commit 483bd943bd
3 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
from .relay_connection_handler import RelayConnectionHandler
from .relay_user_handler import RelayUser, RelayUserHandler
from .sockets_pipe import SocketsPipe
from .tcp_connection_handler import TCPConnectionHandler
from .tcp import SocketsPipe
from .tcp_pipe_spawner import TCPPipeSpawner

View File

@ -2,7 +2,7 @@ import socket
from ipaddress import IPv4Address
from typing import List
from .tcp import SocketsPipe
from .sockets_pipe import SocketsPipe
class TCPPipeSpawner: