#ifndef HTTPRESPONSEDATA_H #define HTTPRESPONSEDATA_H /* This data belongs to the HttpResponse */ #include "HttpParser.h" #include "AsyncSocketData.h" #include namespace uWS { template struct HttpResponseData : HttpParser, AsyncSocketData { std::function inStream; std::function outStream; /* Outgoing offset */ int offset = 0; }; } #endif // HTTPRESPONSEDATA_H