# HG changeset patch # User Matt Johnston # Date 1633936342 -28800 # Node ID 7a0068effc65c9f2a44a5723d94da205fb542044 # Parent 209711833f1540dc1d42ea81a7cd65a73b0c445e Add a comment about sending initial auth request diff -r 209711833f15 -r 7a0068effc65 cli-session.c --- a/cli-session.c Wed Mar 31 23:31:26 2021 +0800 +++ b/cli-session.c Mon Oct 11 15:12:22 2021 +0800 @@ -245,6 +245,9 @@ /* We've got the transport layer sorted, we now need to request * userauth */ send_msg_service_request(SSH_SERVICE_USERAUTH); + /* We aren't using any "implicit server authentication" methods, + so don't need to wait for a response for SSH_SERVICE_USERAUTH + before sending the auth messages (rfc4253 10) */ cli_auth_getmethods(); cli_ses.state = USERAUTH_REQ_SENT; TRACE(("leave cli_sessionloop: sent userauth methods req"))