X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/9523acd2d7be7b8bbbf6d8c786c68c91f9fcc700..561dba59a06d7f7cc5614b1648484e439aebb771:/Server/src/httpmessage.cpp?ds=sidebyside diff --git a/Server/src/httpmessage.cpp b/Server/src/httpmessage.cpp index c97da08..260fe80 100644 --- a/Server/src/httpmessage.cpp +++ b/Server/src/httpmessage.cpp @@ -41,14 +41,16 @@ namespace Server { HTTPMessage::~HTTPMessage(void) { #ifdef DEBUG - cerr << __FILE__ << ": destructor." << endl; + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": destructor." << endl; #endif // DEBUG } HTTPMessage::HTTPMessage(const string& _body, const string& _version): version(_version) { #ifdef DEBUG - cerr << __FILE__ << ": version = " << version << " | body (" + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": version = " << version << " | body (" << _body.length() << ") = " << _body << endl; #endif // DEBUG headers["Accept-Ranges"] = "bytes"; @@ -66,7 +68,8 @@ const string& HTTPMessage::get_body(void) const { istream& operator>>(istream& is, HTTPMessage& m) { #ifdef DEBUG - cerr << __FILE__ << ": operator>>()" << endl; + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": operator>>()" << endl; #endif // DEBUG char buf[BUFSIZ]; while (is.getline(buf, BUFSIZ)) { @@ -97,7 +100,8 @@ istream& operator>>(istream& is, HTTPMessage& m) { ostream& operator<<(ostream& os, const HTTPMessage& m) { #ifdef DEBUG - cerr << __FILE__ << ": operator<<()" << endl; + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": operator<<()" << endl; #endif // DEBUG return os << m.headers << "\r\n" // Fin de cabeceras << m.body;