diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-28 13:01:19 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-08-28 13:01:19 +0000 |
commit | 104cf9cbee8ae0c6994060b565fe410e8f140ed7 (patch) | |
tree | 601834883d8cb4707820164de7fcceb9cf4f51c5 /src/userprocess.cpp | |
parent | fe3799248f7d4cf50b1ba704615d5952dede8917 (diff) |
Note: connect() cant time out for inspsockets in this commit. They'll sit in memory forever -- if you want something actually working properly wait for the next commit
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5040 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/userprocess.cpp')
-rw-r--r-- | src/userprocess.cpp | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/userprocess.cpp b/src/userprocess.cpp index aa16bd90e..ed5c4e7ae 100644 --- a/src/userprocess.cpp +++ b/src/userprocess.cpp @@ -260,29 +260,6 @@ void InspIRCd::ProcessUser(userrec* cu) } } -void InspIRCd::DoSocketTimeouts(time_t TIME) -{ - unsigned int numsockets = this->module_sockets.size(); - - for (std::vector<InspSocket*>::iterator a = this->module_sockets.begin(); a < this->module_sockets.end(); a++) - { - InspSocket* s = *a; - int fd = s->GetFd(); - if ((s) && (fd >= 0) && (fd < MAX_DESCRIPTORS) && (this->SE->GetRef(fd) == s) && (s->Timeout(TIME))) - { - this->Log(DEBUG,"userprocess.cpp: Socket poll returned false, close and bail"); - SE->DelFd(s); - this->module_sockets.erase(a); - s->Close(); - DELETE(s); - break; - } - - if (this->module_sockets.size() != numsockets) - break; - } -} - /** * This function is called once a second from the mainloop. * It is intended to do background checking on all the user structs, e.g. |