[core,settings] enable SupportDynamicTimeZone

FreeRDP based clients & servers support it. If a remote does not support
it it is not send/received.
This commit is contained in:
Armin Novak 2024-06-24 13:07:16 +02:00
parent 607606c6ee
commit 0810e7d944
1 changed files with 7 additions and 4 deletions

View File

@ -799,10 +799,10 @@ rdpSettings* freerdp_settings_new(DWORD flags)
const BOOL enable = freerdp_settings_get_bool(settings, FreeRDP_ServerMode);
{
const FreeRDP_Settings_Keys_Bool keys[] = {
FreeRDP_SupportDynamicTimeZone, FreeRDP_SupportGraphicsPipeline,
FreeRDP_SupportStatusInfoPdu, FreeRDP_SupportErrorInfoPdu, FreeRDP_SupportAsymetricKeys
};
const FreeRDP_Settings_Keys_Bool keys[] = { FreeRDP_SupportGraphicsPipeline,
FreeRDP_SupportStatusInfoPdu,
FreeRDP_SupportErrorInfoPdu,
FreeRDP_SupportAsymetricKeys };
for (size_t x = 0; x < ARRAYSIZE(keys); x++)
{
@ -810,6 +810,9 @@ rdpSettings* freerdp_settings_new(DWORD flags)
goto out_fail;
}
}
if (!freerdp_settings_set_bool(settings, FreeRDP_SupportDynamicTimeZone, TRUE))
goto out_fail;
if (!freerdp_settings_set_bool(settings, FreeRDP_SupportSkipChannelJoin, TRUE))
goto out_fail;