Skip to content

Commit

Permalink
Merge 02fe99a into 4cf01e6
Browse files Browse the repository at this point in the history
  • Loading branch information
pedia committed Nov 20, 2019
2 parents 4cf01e6 + 02fe99a commit 8201eb3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,14 @@ class SSHClient extends SSHTransport with SSHAgentForwarding {
int loginPrompts = 0, passwordPrompts = 0, userauthFail = 0;
bool acceptedHostkey = false, loadedPw = false, wrotePw = false;
Uint8List pw;
int termWidth = 80, termHeight = 25;
int termWidth, termHeight;

SSHClient(
{Uri hostport,
this.login,
this.termvar = '',
this.termWidth = 80,
this.termHeight = 25,
this.startupCommand,
bool compress = false,
this.agentForwarding = false,
Expand Down Expand Up @@ -579,7 +581,7 @@ class SSHClient extends SSHTransport with SSHAgentForwarding {
'window-change',
Point(termWidth, termHeight),
Point(termWidth * 8, termHeight * 12),
'',
termvar,
'',
false));
}
Expand Down

0 comments on commit 8201eb3

Please sign in to comment.