Github user mike-jumper commented on a diff in the pull request:
https://github.com/apache/incubator-guacamole-server/pull/93#discussion_r121855950
--- Diff: src/protocols/ssh/settings.c ---
@@ -279,6 +287,14 @@ guac_ssh_settings* guac_ssh_parse_args(guac_user* user,
guac_user_parse_args_boolean(user, GUAC_SSH_CLIENT_ARGS, argv,
IDX_CREATE_RECORDING_PATH, false);
+ /* Parse server alive interval */
+ settings->server_alive_interval =
+ guac_user_parse_args_int(user, GUAC_SSH_CLIENT_ARGS, argv,
+ IDX_SERVER_ALIVE_INTERVAL, 0);
+ if (settings->server_alive_interval == 1)
+ guac_user_log(user, GUAC_LOG_WARNING, "Minimum keepalive interval "
--- End diff --
Perhaps this should instead be logged within the shared SSH client code,
rather than repeated for all users of that shared code?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---