From 08c56237027d4091fb4fbfeff56c9d9b1c9d5114 Mon Sep 17 00:00:00 2001 From: Fedor Sevrugin Date: Thu, 6 Feb 2025 04:51:46 +0300 Subject: [PATCH] V1.0.2 -- a little more chatty --- fedordpi.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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)) -- 2.30.2