diff --git a/server/src/uds/transports/RDP/rdp_base.py b/server/src/uds/transports/RDP/rdp_base.py index 72a24643..e6fbdc1a 100644 --- a/server/src/uds/transports/RDP/rdp_base.py +++ b/server/src/uds/transports/RDP/rdp_base.py @@ -239,6 +239,7 @@ class BaseRDPTransport(transports.Transport): ) smooth = gui.CheckBoxField( label=_('Font Smoothing'), + defvalue=gui.TRUE, order=35, tooltip=_('If checked, fonts smoothing will be allowed'), tab=gui.DISPLAY_TAB, diff --git a/tunnel-server/src/uds_tunnel/proxy.py b/tunnel-server/src/uds_tunnel/proxy.py index face6585..bf0becd2 100644 --- a/tunnel-server/src/uds_tunnel/proxy.py +++ b/tunnel-server/src/uds_tunnel/proxy.py @@ -158,8 +158,8 @@ class Proxy: prettyDest = '' logger.info('CONNECT FROM %s', prettySource) + # Handshake correct in this point, start SSL connection try: - # Handshake correct, get the command (4 bytes) command: bytes = await source.recv(consts.COMMAND_LENGTH) if command == consts.COMMAND_TEST: logger.info('COMMAND: TEST')