From 2be6f8074ac99c282a0815060bdf5b4d48f88c0c Mon Sep 17 00:00:00 2001 From: moneroexamples Date: Sat, 20 Aug 2016 18:28:53 +0800 Subject: [PATCH] dont show header values --- main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index 01dc92e..01aa8b3 100644 --- a/main.cpp +++ b/main.cpp @@ -103,8 +103,8 @@ int main(int ac, const char* av[]) { CROW_ROUTE(app, "/") ([&](const crow::request& req) { - for (const auto& m : req.headers) - cout << m.first << ": " << m.second << endl; + //for (const auto& m : req.headers) + // cout << m.first << ": " << m.second << endl; return xmrblocks.index2(); });