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
+3 -6
View File
@@ -1,17 +1,14 @@
#ifndef ASYNCSOCKETDATA_H
#define ASYNCSOCKETDATA_H
#include <string>
/* Depending on how we want AsyncSocket to function, this will need to change */
// todo: think about chains of AsyncSocketData too!
// we want to buffer things up in one buffer, or in many separate ones (like with websockets)
#include <string>
template <bool SSL>
struct AsyncSocketData {
// we need a buffer
/* This will do for now */
std::string buffer;
};
#endif // ASYNCSOCKETDATA_H