mirror of
https://github.com/gamedig/node-gamedig.git
synced 2024-11-17 17:25:19 +01:00
Treat duplicate matching challenge keys in valve proto as non-fatal resolves #58
This commit is contained in:
parent
148b295dc8
commit
5fd8318efb
1 changed files with 12 additions and 7 deletions
|
@ -217,15 +217,20 @@ class Valve extends require('./core') {
|
|||
const type = reader.uint(1);
|
||||
|
||||
if(type === 0x41) {
|
||||
if(this.debug) console.log('Received challenge key');
|
||||
if(this._challenge) return this.fatal('Received more than one challenge key');
|
||||
this._challenge = reader.uint(4);
|
||||
const key = reader.uint(4);
|
||||
|
||||
if(sendChallenge) {
|
||||
if(this.debug) console.log('Restarting query');
|
||||
send();
|
||||
return true;
|
||||
if(this.debug) console.log('Received challenge key: ' + key);
|
||||
|
||||
if(this._challenge !== key) {
|
||||
this._challenge = key;
|
||||
if(sendChallenge) {
|
||||
if (this.debug) console.log('Restarting query');
|
||||
send();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
if(this.debug) console.log("Received "+type.toString(16)+" expected "+expect.toString(16));
|
||||
|
|
Loading…
Reference in a new issue