diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/socket.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/socket.h b/include/socket.h index 861d4be79..584c37b93 100644 --- a/include/socket.h +++ b/include/socket.h @@ -23,6 +23,7 @@ #include <sstream> #include <string> #include "dns.h" +#include <deque> /** * States which a socket may be in @@ -114,7 +115,7 @@ private: /** * The output buffer for this socket */ - std::string Buffer; + std::deque<std::string> outbuffer; /** * The IP address being connected |