Skip to content
Snippets Groups Projects
Commit bb2379d6 authored by Matt Johnston's avatar Matt Johnston
Browse files

Don't send "ssh-connection" service request

github.com disconnects immediately. OpenSSH and Dropbear clients
don't send it anyway.

sunsetc can now push itself to github!
parent ff6ce187
Branches
No related merge requests found
......@@ -33,7 +33,10 @@ impl Client {
b: &mut impl CliBehaviour,
) -> Result<()> {
parse_ctx.cli_auth_type = None;
s.send(packets::ServiceRequest { name: SSH_SERVICE_CONNECTION })?;
// github.com doesn't like this, openssh doesn't send it
// s.send(packets::ServiceRequest { name: SSH_SERVICE_CONNECTION })?;
self.auth.success(b)
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment