33 class WsgiResponse :
public AddonClass
37 ~WsgiResponse()
override;
39#ifdef DOXYGEN_SHOULD_USE_THIS
60 WsgiResponseBody* operator()(
const String& status,
const std::vector<WsgiHttpHeader>& response_headers,
void* exc_info = NULL);
64 void Append(
const std::string& data);
66 bool Finalize(HTTPPythonRequest* request)
const;
69 bool m_called =
false;
70 int m_status = MHD_HTTP_INTERNAL_SERVER_ERROR;
71 std::multimap<std::string, std::string> m_responseHeaders;
Definition WsgiResponseBody.h:27