Some clean-ups

This commit is contained in:
Alex Hultman
2018-09-15 05:31:42 +02:00
parent eee6e97fda
commit 883bdfe7d7
11 changed files with 41 additions and 53 deletions
+1 -7
View File
@@ -11,16 +11,10 @@ namespace uWS {
template <bool SSL>
struct HttpResponseData : HttpParser, AsyncSocketData<SSL> {
// asyncsocketdata will hold the outgoing buffer to hold the header if not sent off in one go
// inStream, outStream
std::function<void(std::string_view)> inStream;
std::function<std::string_view(int)> outStream;
/* Outgoing offset */
int offset = 0;
// writeHandler
};
}