Response headers not being set in Crow a C++ web framework
I am working on a reverse-proxy server, using the crow framework in C++. I want to set the headers that i get after fetching the original server but it does not work. I receive 9 headers from original server but only 4 are added to current headers. CROW_CATCHALL_ROUTE(Server)([](const crow::request& req, crow::response& res) { string ip […]