summaryrefslogtreecommitdiff
path: root/src/socket.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-11 20:08:38 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-03-11 20:08:38 +0000
commit43b4a302d4d4210eea93e10cce2fabdd27c04e58 (patch)
tree00e87db2009b2ac015d84950f1a64c384cf09d7e /src/socket.cpp
parent8af51fb7d539e19e43b924adb1d52e78c699ef10 (diff)
Completely removed the deque
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3685 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/socket.cpp')
-rw-r--r--src/socket.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/socket.cpp b/src/socket.cpp
index 498b17949..174df4a1b 100644
--- a/src/socket.cpp
+++ b/src/socket.cpp
@@ -64,7 +64,6 @@ InspSocket::InspSocket(int newfd, char* ip)
InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsigned long maxtime) : fd(-1), host(ahost)
{
this->ClosePending = false;
- this->outbuffer.clear();
if (listening) {
if ((this->fd = OpenTCPSocket()) == ERROR)
{