Use DNS name

This commit is contained in:
Davte 2020-04-09 14:45:38 +02:00
parent 018bea5606
commit 9dba9673a3
2 changed files with 2 additions and 4 deletions

View File

@ -124,8 +124,7 @@ if __name__ == '__main__':
loop = asyncio.get_event_loop()
client = Client(
# host='127.0.0.1', # localhost
host='davte.it', # Aruba
host='davte.it',
port=5000,
)
# loop.add_signal_handler(signal.SIGINT, client.stop, loop)

View File

@ -132,8 +132,7 @@ if __name__ == '__main__':
loop = asyncio.get_event_loop()
server = Server(
# host='127.0.0.1', # localhost
host='5.249.159.33', # Aruba
host='davte.it',
port=5000,
)
logging.info("Starting file bridging server...")