* Resp DONT to WONT NEW-ENVIRONMENT
This commit is contained in:
parent
d028cbfc6b
commit
dfb4f17c5f
|
@ -538,7 +538,11 @@ TelnetClient.prototype.handleWillCommand = function(evt) {
|
||||||
};
|
};
|
||||||
|
|
||||||
TelnetClient.prototype.handleWontCommand = function(evt) {
|
TelnetClient.prototype.handleWontCommand = function(evt) {
|
||||||
|
if('new environment' === evt.option) {
|
||||||
|
this.dont.new_environment();
|
||||||
|
} else {
|
||||||
this.connectionDebug(evt, 'WONT');
|
this.connectionDebug(evt, 'WONT');
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
TelnetClient.prototype.handleDoCommand = function(evt) {
|
TelnetClient.prototype.handleDoCommand = function(evt) {
|
||||||
|
|
Loading…
Reference in New Issue