Open mvayngrib opened 9 years ago
I'm assuming the incoming packets are from the same host and port?
right
this gets me pretty far to working:
if (this._payload.length) {
this._acknowledgement = false;
this._finish = false;
} else {
this._acknowledgement = !!(bools & 0x80);
this._finish = !!(bools & 0x20);
}
Bear in mind, I'm absolutely open to fixing this problem.
Just trying to be on the same page about ways to tackling this.
yep, Packet.js :)
it's kind of a weird case, but I have the rudp client sharing a socket, and the rudp client ends up getting confused, misinterpreting packets not meant for itself