diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-07 18:00:45 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-07 18:00:45 +0000 |
commit | 85f9d57f0f172c0db12d037ac018d7ff33a64975 (patch) | |
tree | ac14a862621210f4ea41d246f6fd035e7a937d05 /include | |
parent | bac3bedc9faae28b71ace255b0e82efc62dadfb0 (diff) |
Tweaks to socket engine, faster buffer flush and hopefully more stable
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3521 e03df62e-2008-0410-955e-edbf42e46eb7
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 |