summaryrefslogtreecommitdiff
path: root/include/inspsocket.h
diff options
context:
space:
mode:
authorom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-03 16:39:09 +0000
committerom <om@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-03 16:39:09 +0000
commitcba550cb9758190cd5d1549918ed63df806bab45 (patch)
treeda03c7858c5a832d3cf977a0e5e1843d8675226c /include/inspsocket.h
parent7a942b70bc316930cab27a88d4cff45b60f0b070 (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.h2
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;