#ifndef ASYNCSOCKETDATA_H #define ASYNCSOCKETDATA_H #include // 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 struct AsyncSocketData { // we need a buffer std::string buffer; }; #endif // ASYNCSOCKETDATA_H