cpprestsdk
cpprestsdk copied to clipboard
How to get client config timeout http_client_config::set_timeout() in Server side
Client could set http timeout, how to get this value in server side?
m_listener->support(methods::GET, std::bind(&RestHandler::handle_get, this, std::placeholders::_1));
in the function RestHandler::handle_get(...), is that possible to get the timeout seconds?
Regards