diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-12 15:45:25 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-12-12 15:45:25 +0000 |
commit | 0fbc81cffcf28adb80b731f3604d7ea02c32f86b (patch) | |
tree | 8feb07ea861a4c8fb32b7eab1a449ba1d5c1635d /src/inspircd.cpp | |
parent | ebe735d5f37b504f0b4c95ca1f827d18b03dae08 (diff) |
Fixed timeout code
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2344 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 7f0ea8fd8..00c7c5f79 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -2700,7 +2700,7 @@ int InspIRCd(char** argv, int argc) InspSocket* s = (InspSocket*)*a; if ((s) && (s->GetFd() == activefds[activefd])) { - if (!s->Poll()) + if ((s->Timeout(TIME)) || (!s->Poll())) { log(DEBUG,"Socket poll returned false, close and bail"); SE->DelFd(s->GetFd()); |