diff options
author | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-03 16:39:09 +0000 |
---|---|---|
committer | om <om@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-07-03 16:39:09 +0000 |
commit | cba550cb9758190cd5d1549918ed63df806bab45 (patch) | |
tree | da03c7858c5a832d3cf977a0e5e1843d8675226c /include/inspsocket.h | |
parent | 7a942b70bc316930cab27a88d4cff45b60f0b070 (diff) |
Change InspSocket's private members to only be protected, I couldn't find any other way to do this before we get around to rewriting the socket engine.
Commit very first, very alpha, not-very functional version of the PostgreSQL module. It compiles..and that's..err..about it
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4112 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspsocket.h')
-rw-r--r-- | include/inspsocket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspsocket.h b/include/inspsocket.h index e32b06bbb..6994e1647 100644 --- a/include/inspsocket.h +++ b/include/inspsocket.h @@ -47,7 +47,7 @@ enum InspSocketError { I_ERR_TIMEOUT, I_ERR_SOCKET, I_ERR_CONNECT, I_ERR_BIND, I */ class InspSocket { -private: +protected: std::deque<std::string> outbuffer; |