Skip to content
Snippets Groups Projects
Commit 910b18ae authored by deuce's avatar deuce
Browse files

Set sentempty if we send an eob while senteob is true.

May fix infinite M_EOB ping-pong on some v1.1 connections.
parent 17dde362
No related branches found
No related tags found
No related merge requests found
......@@ -861,6 +861,8 @@ BinkP.prototype.sendCmd = function(cmd, data)
return false;
switch(cmd) {
case this.command.M_EOB:
if (this.senteob)
this.sentempty=true;
this.senteob=true;
break;
case this.command.M_ERR:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment