GUACAMOLE-422: Update comments on timezone settings.

This commit is contained in:
Nick Couchman 2018-11-11 15:30:17 -05:00
parent 5536b836ad
commit d7ed452d69
3 changed files with 11 additions and 6 deletions

View File

@ -358,7 +358,10 @@ enum RDP_ARGS_IDX {
IDX_PRECONNECTION_BLOB, IDX_PRECONNECTION_BLOB,
/** /**
* The timezone to pass through to the RDP connection. * The timezone to pass through to the RDP connection, in IANA format, which
* will be translated into Windows formats. See the following page for
* information and list of valid values:
* https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
*/ */
IDX_TIMEZONE, IDX_TIMEZONE,

View File

@ -249,11 +249,12 @@ enum SSH_ARGS_IDX {
IDX_LOCALE, IDX_LOCALE,
/** /**
* The timezone that is passed from the client system to the * The timezone that is to be passed to the remote system, via the
* remote server, or null if not specified. If set, and allowed * TZ environment variable. By default, no timezone is forwarded
* by the remote SSH server, the TZ environment variable will be * and the timezone of the remote system will be used. This
* set on the remote session, causing the session to be localized * setting will only work if the SSH server allows the TZ variable
* to the specified timezone. * to be set. Timezones should be in standard IANA format, see:
* https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
*/ */
IDX_TIMEZONE, IDX_TIMEZONE,

View File

@ -253,6 +253,7 @@ typedef struct guac_ssh_settings {
* environment variable. * environment variable.
*/ */
char* locale; char* locale;
/** /**
* The client timezone to pass to the remote system. * The client timezone to pass to the remote system.
*/ */