刚看的大致流程:

1、先把header直到\r\n\r\n整个地收下来;
2、如果Connection: Keep-Alive:
1)if Transfer-Encoding: chunked, 就读, 直到chunk为0
2)else if Content-Length存在, 就从头到末尾开始计算C-L个字节.
3、else 就这么一直读等服务器断开连接就好.