| 166 | } |
| 167 | |
| 168 | void HTTPReqHandler::GenericProxyError(std::string_view title, std::string_view description) |
| 169 | { |
| 170 | std::stringstream ss; |
| 171 | ss << "<h1>" << tr("Proxy error") << ": " << title << "</h1>\r\n"; |
| 172 | ss << "<p>" << description << "</p>\r\n"; |
| 173 | SendProxyError(ss.str ()); |
| 174 | } |
| 175 | |
| 176 | void HTTPReqHandler::GenericProxyInfo(std::string_view title, std::string_view description) |
| 177 | { |
no test coverage detected