Change HttpResponse creation method.

This commit is contained in:
XMRig 2019-03-29 12:56:34 +07:00
parent 01ad6bf2d9
commit 9daa5874f5
9 changed files with 55 additions and 18 deletions

View file

@ -33,16 +33,13 @@
#include <string>
typedef struct http_parser http_parser;
namespace xmrig {
class HttpResponse
{
public:
HttpResponse();
HttpResponse(uint64_t id);
inline void end() { writeOrEnd("", true); }
inline void end(const std::string &str) { writeOrEnd(str, true); }
@ -50,7 +47,6 @@ public:
inline void setStatus(int code) { statusCode = code; }
inline void write(const std::string &str) { writeOrEnd(str, false); }
http_parser *parser;
int statusCode;
std::map<const std::string, const std::string> headers;
std::string body;
@ -60,6 +56,7 @@ private:
void writeOrEnd(const std::string &str, bool end);
bool m_writtenOrEnded = false;
const uint64_t m_id;
};