We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3f5bd8 commit cd68e0cCopy full SHA for cd68e0c
1 file changed
remmina/src/remmina_ssh.c
@@ -490,7 +490,8 @@ remmina_ssh_init_session(RemminaSSH *ssh)
490
ssh->session = ssh_new();
491
ssh_options_set(ssh->session, SSH_OPTIONS_HOST, ssh->server);
492
ssh_options_set(ssh->session, SSH_OPTIONS_PORT, &ssh->port);
493
- ssh_options_set(ssh->session, SSH_OPTIONS_COMPRESSION, "yes");
+ /** @todo add an option to set the compression nad set it to no as the default option */
494
+ //ssh_options_set(ssh->session, SSH_OPTIONS_COMPRESSION, "yes");
495
/* When SSH_OPTIONS_USER is not set, the local user account is used */
496
if (*ssh->user != 0)
497
ssh_options_set(ssh->session, SSH_OPTIONS_USER, ssh->user);
0 commit comments