Fix ipcBuffer being shared with all sockets
This commit is contained in:
parent
70e03c119b
commit
800936ab08
1 changed files with 4 additions and 4 deletions
|
@ -165,18 +165,18 @@ function gotData(socket,data,UDPSocket){
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!this.ipcBuffer){
|
if(!sock.ipcBuffer){
|
||||||
this.ipcBuffer='';
|
sock.ipcBuffer='';
|
||||||
}
|
}
|
||||||
|
|
||||||
data=(this.ipcBuffer+=data);
|
data=(sock.ipcBuffer+=data);
|
||||||
|
|
||||||
if(data.slice(-1)!=eventParser.delimiter || data.indexOf(eventParser.delimiter) == -1){
|
if(data.slice(-1)!=eventParser.delimiter || data.indexOf(eventParser.delimiter) == -1){
|
||||||
this.log('Messages are large, You may want to consider smaller messages.');
|
this.log('Messages are large, You may want to consider smaller messages.');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.ipcBuffer='';
|
sock.ipcBuffer='';
|
||||||
|
|
||||||
data=eventParser.parse(data);
|
data=eventParser.parse(data);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue