Firstly,when I say http protocol mix character stream with byte stream,I mean request head is character stream and request body is byte stream(specified by content-length ),they are seperated by an empty line.
This design make http implementation more difficult.For example,if you use java to implement an http server,you can't use such code because BufferedReader will buffer some bytes for read a line.
InputStream stream=socket.getInputStream();
BufferedReader reader=new BufferedReader(new InputStreamReader(stream));
String line;
while( !(line=reader.readLine()).equals("") ){
//do something with line
}
//from stream to read content-length bytes
stream.read(...)
It would be more easy to implement http protocol if it use first two bytes to specified length of request head instead of use empty line.