You can set restrictions on the protocol version used in the connection.
| Example 4.38. Disabling RDP5 protocol by force-reverting it to RDP4 |
|---|
|
The following proxy class enables RDP4 sessions only, and reverts the session to RDP4 if a client tries to initiate an RDP5 session. class MyRdpProxy(RdpProxy):
def config(self):
RdpProxy.config(self)
self.enable_rdp5 = FALSE
self.force_rdp4 = TRUE
self.enable_rdp4 = TRUE
|
Published on May 30, 2024
© BalaSys IT Ltd.
Send your comments to support@balasys.hu


