Hi Team,

I am working on enabling and disabling clipboard.

I went through *FreeRDP Manual* from which I found  the following  variable
in rdpSettings structure which is as follows:-


ALIGN64
<http://pub.freerdp.com/api/settings_8h.html#add0fe9c1d1861e48a984a16af397f794>
 BOOL  RedirectClipboard
<http://pub.freerdp.com/api/structrdp__settings.html#ad47baf5b1279709522386c58cc16c2d2>

I have to push these settings to FreeRDP rdpSettings in Guacamole-server
where I found the following:-

#ifdef LEGACY_RDPSETTINGS
    rdp_settings->domain = guac_rdp_strdup(guac_settings->domain);
    rdp_settings->username = guac_rdp_strdup(guac_settings->username);
    rdp_settings->password = guac_rdp_strdup(guac_settings->password);
#else
    rdp_settings->Domain = guac_rdp_strdup(guac_settings->domain);
    rdp_settings->Username = guac_rdp_strdup(guac_settings->username);
    rdp_settings->Password = guac_rdp_strdup(guac_settings->password);
#endif


Which means there is a change in settings based on  LEGACY_RDPSETTINGS.

I am unable to find the other variable of  RedirectClipboard
<http://pub.freerdp.com/api/structrdp__settings.html#ad47baf5b1279709522386c58cc16c2d2>
which will be applicable for  LEGACY_RDPSETTINGS.



Please guide me where to look. I already went through the code of *FreeRDP
version 1.0.2* where i didn't find anything.

Thanks and Regards,
Amarjeet Singh

Reply via email to