necouchman commented on a change in pull request #201: GUACAMOLE-547: Add support for SSH NONE authentication method URL: https://github.com/apache/guacamole-server/pull/201#discussion_r295397372
########## File path: src/common-ssh/common-ssh/ssh.h ########## @@ -92,14 +114,31 @@ void guac_common_ssh_uninit(); * * @param user * The user to authenticate as, once connected. + * + * @param keepalive + * How frequently the connection should send keepalive packets, in + * seconds. Zero disables keepalive packets, and 2 is the minimum + * configurable value. + * + * @param host_key + * The known public host key of the server, as provided by the client. If + * provided the identity of the server will be checked against this key, + * and a mis-match between this and the server identity will cause the + * connection to fail. If not provided, no checks will be done and the + * connection will proceed. + * + * @param credential_handler + * The handler function for retrieving additional credentials from the user + * as required by the SSH server. Review comment: Added that bit in. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
