From 6988b99fb41789be378e51211c2724fbdd8322d7 Mon Sep 17 00:00:00 2001 From: Nicolas Viennot Date: Mon, 10 Jun 2013 05:51:11 -0400 Subject: [PATCH] Enable compression --- tmate-ssh-client.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tmate-ssh-client.c b/tmate-ssh-client.c index fa09c551..3c5ff53f 100644 --- a/tmate-ssh-client.c +++ b/tmate-ssh-client.c @@ -98,6 +98,7 @@ static void on_session_event(struct tmate_ssh_client *client) ssh_options_set(session, SSH_OPTIONS_LOG_VERBOSITY, &verbosity); ssh_options_set(session, SSH_OPTIONS_PORT, &port); ssh_options_set(session, SSH_OPTIONS_USER, "tmate"); + ssh_options_set(session, SSH_OPTIONS_COMPRESSION, "yes"); tmate_debug("Connecting..."); client->state = SSH_CONNECT;