diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-12 22:29:06 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-12 22:29:06 +0000 |
commit | 7d283ead756f22b2c659414b89938777ad97599f (patch) | |
tree | 5f658ddae1ed059e127e9939bd2ab6e651240d8a /src/socket.cpp | |
parent | 4d6d3859d208d5576e7149de9a0a5576b7cf5153 (diff) |
Efficiency suggestion by w00t, faster processing of module sockets at the expense of a bit of ram
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2357 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/socket.cpp')
-rw-r--r-- | src/socket.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/socket.cpp b/src/socket.cpp index 625c0ff70..8da570fe4 100644 --- a/src/socket.cpp +++ b/src/socket.cpp @@ -46,6 +46,8 @@ extern time_t TIME; extern bool unlimitcore; extern int MaxConn; +InspSocket* socket_ref[65535]; + InspSocket::InspSocket() { this->state = I_DISCONNECTED; @@ -57,6 +59,7 @@ InspSocket::InspSocket(int newfd, char* ip) this->state = I_CONNECTED; this->IP = ip; SE->AddFd(this->fd,true,X_ESTAB_MODULE); + socket_ref[this->fd] = this; } InspSocket::InspSocket(std::string host, int port, bool listening, unsigned long maxtime) @@ -85,6 +88,7 @@ InspSocket::InspSocket(std::string host, int port, bool listening, unsigned long { this->state = I_LISTENING; SE->AddFd(this->fd,true,X_ESTAB_MODULE); + socket_ref[this->fd] = this; log(DEBUG,"New socket now in I_LISTENING state"); return; } @@ -132,6 +136,7 @@ InspSocket::InspSocket(std::string host, int port, bool listening, unsigned long } this->state = I_CONNECTING; SE->AddFd(this->fd,false,X_ESTAB_MODULE); + socket_ref[this->fd] = this; return; } } @@ -143,6 +148,7 @@ void InspSocket::Close() this->OnClose(); shutdown(this->fd,2); close(this->fd); + socket_ref[this->fd] = NULL; this->fd = -1; } } |