summaryrefslogtreecommitdiff
path: root/include/sockets.h
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2011-04-29 21:12:49 -0400
committerAdam <Adam@anope.org>2011-05-16 04:10:15 -0400
commitb999c6ca53d6b1dfd54688d21718293858f6bcc7 (patch)
tree1090a9d538010eb4026daac7d4b1dbd131635044 /include/sockets.h
parent583954d3a1db658281a9afb7b7dd6773726c8c11 (diff)
Expand more on m_alias and changed some std::string usage in sockets.cpp to use Anope::string
Diffstat (limited to 'include/sockets.h')
-rw-r--r--include/sockets.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sockets.h b/include/sockets.h
index 68be2c9b7..bc0c831bf 100644
--- a/include/sockets.h
+++ b/include/sockets.h
@@ -234,9 +234,9 @@ class CoreExport BufferedSocket : public Socket
{
protected:
/* Things to be written to the socket */
- std::string WriteBuffer;
+ Anope::string WriteBuffer;
/* Part of a message sent from the server, but not totally received */
- std::string extrabuf;
+ Anope::string extrabuf;
/* How much data was received from this socket */
size_t RecvLen;