Merge branch 'jetty-9' of ssh://git.eclipse.org/gitroot/jetty/org.eclipse.jetty.project into jetty-9

This commit is contained in:
Joakim Erdfelt 2012-07-10 14:34:05 -07:00
commit 4fd7ff76fb
1 changed files with 6 additions and 5 deletions

View File

@ -170,6 +170,7 @@ public class Parser
while (parseFrame(buffer))
{
LOG.debug("Parsed Frame: " + frame);
notifyFrame(frame);
}
}
@ -294,7 +295,7 @@ public class Parser
if (payloadLength == 0)
{
state = State.START;
notifyFrame(frame);
return true;
}
state = State.PAYLOAD;
@ -320,7 +321,7 @@ public class Parser
if (payloadLength == 0)
{
state = State.START;
notifyFrame(frame);
return true;
}
state = State.PAYLOAD;
@ -339,7 +340,7 @@ public class Parser
if (payloadLength == 0)
{
state = State.START;
notifyFrame(frame);
return true;
}
state = State.PAYLOAD;
@ -362,7 +363,7 @@ public class Parser
if (payloadLength == 0)
{
state = State.START;
notifyFrame(frame);
return true;
}
state = State.PAYLOAD;
@ -380,7 +381,7 @@ public class Parser
}
state = State.START;
// we have a frame!
notifyFrame(frame);
return true;
}
break;
}