aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2018-09-20 17:36:44 +0200
committerToni Uhlig <matzeton@googlemail.com>2018-09-20 17:36:44 +0200
commit87ec513d57b4865db7008a3c14b5ff2425ed855e (patch)
tree1cc8ff9d0e5d128c81b0fe83aae2ce61e76a5642 /src
parent61199f8b381b4ecbe90fab846e60ab5f4a1dcfb7 (diff)
print hostname:port during http request debug (GUI/CLI)
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src')
-rw-r--r--src/UpdateFactory.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/UpdateFactory.cpp b/src/UpdateFactory.cpp
index 6a25da8..2c1fb79 100644
--- a/src/UpdateFactory.cpp
+++ b/src/UpdateFactory.cpp
@@ -100,9 +100,11 @@ void mapEmcError(int error, std::string& out)
}
}
-static inline void dump_request(httplib::Request& req)
+static inline void dump_request(httplib::Request& req, UpdateFactory *uf)
{
std::cerr << "http-cli: " << req.method << " "
+ << "http://" << (uf ? uf->getHostname() : "[null]")
+ << ":" << (uf ? uf->getPort() : -1)
<< req.path
<< " with MIME " << req.get_header_value("Content-Type")
<< " and SIZE " << req.body.length()
@@ -354,7 +356,7 @@ void UpdateFactory::genRequest(httplib::Request& req, const char *path,
bool UpdateFactory::doGet(httplib::Request& req, httplib::Response& res)
{
req.method = "GET";
- dump_request(req);
+ dump_request(req, this);
return http_client->send(req, res);
}
@@ -362,7 +364,7 @@ bool UpdateFactory::doGet(httplib::Request& req, httplib::Response& res)
bool UpdateFactory::doPost(httplib::Request& req, httplib::Response& res)
{
req.method = "POST";
- dump_request(req);
+ dump_request(req, this);
if (!http_client)
return false;