From: Fedor Sevrugin Date: Thu, 6 Feb 2025 01:51:46 +0000 (+0300) Subject: V1.0.2 -- a little more chatty X-Git-Url: https://fedor.sevrugin.ru/git/?a=commitdiff_plain;h=08c56237027d4091fb4fbfeff56c9d9b1c9d5114;p=fedordpi.git V1.0.2 -- a little more chatty --- diff --git a/fedordpi.py b/fedordpi.py index 78feec0..41348c7 100644 --- a/fedordpi.py +++ b/fedordpi.py @@ -77,5 +77,7 @@ async def fragemtn_data(local_reader, remote_writer): await remote_writer.drain() -asyncio.run(main(host='127.0.0.1', port=8881)) - +host = '127.0.0.1' +port = 8881 +print(f'proxy: {host}:{str(port)}') +asyncio.run(main(host=host, port=port))