- if (is_header) {
- // TODO body
- // Ver si tiene un Content-Length para saber si esperamos body.
- // Si no esperamos body, no hay que hacer otro is.getline()
- // porque se queda esperando forever.
- is_header = false;
- break;
- }// else { TODO body
- // body_ss << sbuf << endl;
- //}
+ // Hay Content-Length, entonces hay body (no respeta RFC AFAIK).
+ if (m.headers.find("Content-Length") != m.headers.end()) {
+ streamsize size;
+ to(m.headers["Content-Length"], size);
+ char* const buf2 = new char[size+1];
+ if (is.readsome(buf2, size)) {
+ m.body = buf2;
+ }
+ delete []buf2;
+ }
+ // Después de una línea vacía, haya obtenido el body o no, sale del
+ // while.
+ break;