Use aruba as host

This commit is contained in:
Davte 2020-03-30 18:01:49 +02:00
parent 248d4ccb88
commit 7549977fc9
2 changed files with 4 additions and 2 deletions

View File

@ -116,7 +116,8 @@ if __name__ == '__main__':
loop = asyncio.get_event_loop()
client = Client(
host='127.0.0.1',
# host='127.0.0.1', # localhost
host='5.249.159.33', # Aruba
port=(5000 if action == 'send' else 5001),
)
# loop.add_signal_handler(signal.SIGINT, client.stop, loop)

View File

@ -121,7 +121,8 @@ if __name__ == '__main__':
loop = asyncio.get_event_loop()
server = Server(
host='127.0.0.1',
# host='127.0.0.1', # localhost
host='5.249.159.33', # Aruba
input_port=5000,
output_port=5001
)