Move files around

This commit is contained in:
Alex Hultman
2018-09-15 05:04:34 +02:00
parent 527089c621
commit eee6e97fda
13 changed files with 13 additions and 13 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef ASYNCSOCKETDATA_H
#define ASYNCSOCKETDATA_H
#include <string>
// todo: think about chains of AsyncSocketData too!
// we want to buffer things up in one buffer, or in many separate ones (like with websockets)
template <bool SSL>
struct AsyncSocketData {
// we need a buffer
std::string buffer;
};
#endif // ASYNCSOCKETDATA_H