return null;
case BODY:
LOG.debug("decoding BODY");
int chunkSize = msg.remaining();
// send the chunk of body
HttpContentChunk chunk = new HttpContentChunk(msg);
// do we have reach end of body ?
context.setRemainingBytes(context.getRemainingBytes() - chunkSize);
if (context.getRemainingBytes() <= 0) {
LOG.debug("end of HTTP body");