]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/httpheaders.cpp
Se borran archivos obsoletos.
[z.facultad/75.42/plaqui.git] / Server / src / httpheaders.cpp
index 8ebb3a7eac0b10c8f29fe4558ef95e94ed013617..65d5adcc2c9466ccf17f1ea6e8dc929eda77bba1 100644 (file)
@@ -54,9 +54,13 @@ istream& operator>>(istream& is, HTTPHeaders& h) {
        string::size_type pos = sbuf.find(":");
        if (pos == string::npos) {
                // FIXME poner mejores excepciones.
-               throw "Wrong header";
+               throw string("Wrong header: ") + sbuf;
        }
        h[sbuf.substr(0, pos)] = String(sbuf.substr(pos + 1)).trim();
+#ifdef DEBUG
+       cerr << __FILE__ << "    " << sbuf.substr(0, pos) << " = "
+               << h[sbuf.substr(0, pos)] << endl;
+#endif // DEBUG
        return is;
 }