diff --git a/tunnel-server/src/udstunnel.py b/tunnel-server/src/udstunnel.py index 727cda89..505a1752 100755 --- a/tunnel-server/src/udstunnel.py +++ b/tunnel-server/src/udstunnel.py @@ -319,6 +319,9 @@ def main() -> None: group.add_argument( '-t', '--tunnel', help='Starts the tunnel server', action='store_true' ) + group.add_argument( + '-r', '--rdp', help='RDP Tunnel for traffic accounting' + ) group.add_argument( '-s', '--stats', @@ -335,6 +338,8 @@ def main() -> None: if args.tunnel: tunnel_main() + elif args.rdp: + pass elif args.detailed_stats: curio.run(stats.getServerStats, True) elif args.stats: