From 43b4a302d4d4210eea93e10cce2fabdd27c04e58 Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 11 Mar 2006 20:08:38 +0000 Subject: Completely removed the deque git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3685 e03df62e-2008-0410-955e-edbf42e46eb7 --- include/socket.h | 6 ------ src/socket.cpp | 1 - 2 files changed, 7 deletions(-) diff --git a/include/socket.h b/include/socket.h index 7dabd4bd3..ce0ae7d55 100644 --- a/include/socket.h +++ b/include/socket.h @@ -23,7 +23,6 @@ #include #include #include "dns.h" -#include /** * States which a socket may be in @@ -112,11 +111,6 @@ private: */ char ibuf[65535]; - /** - * The output buffer for this socket - */ - std::deque outbuffer; - /** * The IP address being connected * to stored in string form for 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) { -- cgit v1.2.3