Idle timeout kicks user when on a telnet bridge downloading files #262
This commit is contained in:
parent
c3a19eb208
commit
33a1d1b812
|
@ -52,13 +52,21 @@ class TelnetClientConnection extends EventEmitter {
|
|||
super();
|
||||
|
||||
this.client = client;
|
||||
|
||||
this.dataHits = 0;
|
||||
}
|
||||
|
||||
updateActivity() {
|
||||
if (0 === (this.dataHits++ % 4)) {
|
||||
this.client.explicitActivityTimeUpdate();
|
||||
}
|
||||
}
|
||||
|
||||
restorePipe() {
|
||||
if(!this.pipeRestored) {
|
||||
this.pipeRestored = true;
|
||||
this.client.dataPassthrough = false;
|
||||
|
||||
this.client.restoreDataHandler();
|
||||
|
||||
// client may have bailed
|
||||
if(null !== _.get(this, 'client.term.output', null)) {
|
||||
|
@ -75,11 +83,15 @@ class TelnetClientConnection extends EventEmitter {
|
|||
this.emit('connected');
|
||||
|
||||
this.pipeRestored = false;
|
||||
this.client.dataPassthrough = true;
|
||||
this.client.term.output.pipe(this.bridgeConnection);
|
||||
this.client.setTemporaryDirectDataHandler(data => {
|
||||
this.updateActivity();
|
||||
this.bridgeConnection.write(data);
|
||||
});
|
||||
});
|
||||
|
||||
this.bridgeConnection.on('data', data => {
|
||||
this.updateActivity();
|
||||
|
||||
this.client.term.rawWrite(data);
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue