Skip to content

Commit cd68e0c

Browse files
committed
Removed compression option as not compatible with all SSH server implementations
1 parent e3f5bd8 commit cd68e0c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

remmina/src/remmina_ssh.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,8 @@ remmina_ssh_init_session(RemminaSSH *ssh)
490490
ssh->session = ssh_new();
491491
ssh_options_set(ssh->session, SSH_OPTIONS_HOST, ssh->server);
492492
ssh_options_set(ssh->session, SSH_OPTIONS_PORT, &ssh->port);
493-
ssh_options_set(ssh->session, SSH_OPTIONS_COMPRESSION, "yes");
493+
/** @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");
494495
/* When SSH_OPTIONS_USER is not set, the local user account is used */
495496
if (*ssh->user != 0)
496497
ssh_options_set(ssh->session, SSH_OPTIONS_USER, ssh->user);

0 commit comments

Comments
 (0)