diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-26 13:31:24 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-26 13:31:24 +0000 |
commit | 1f56002af538fe6e2ddaecb96add7053245ad3ad (patch) | |
tree | d289bb826d2d5cb614132e70e598caead8d5b9db /include/connection.h | |
parent | 4d4e4359d64e25c2adee14333e9f192d21425c94 (diff) |
Fixed dicky buffer (due to cleanup the wrong variable was being used)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1193 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/connection.h')
-rw-r--r-- | include/connection.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/include/connection.h b/include/connection.h index 304f20cd9..614a3146d 100644 --- a/include/connection.h +++ b/include/connection.h @@ -27,6 +27,7 @@ #include <time.h> #include <vector> #include <deque> +#include <sstream> #ifndef __CONNECTION_H__ #define __CONNECTION_H__ @@ -78,11 +79,13 @@ class ircd_connector : public Extensible */ bool SetHostAddress(char* host, int port); - /** IRCD Buffer for input characters, holds one line - */ - std::string ircdbuffer; public: + + /** IRCD Buffer for input characters, holds one line + */ + std::string ircdbuffer; + /** When MakeOutboundConnection is called, these public members are * filled with the details passed to the function, for future |