Switch back to a min select timeout of 500 msec

x-x noticed that ConnectDelay = 4 would break with a min timeout of 5 sec...


git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@894 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
psychon
2007-12-02 15:25:11 +00:00
parent b51302be13
commit cf41b0acd0
+2 -2
View File
@@ -180,8 +180,8 @@ int CZNC::Loop() {
}
// Csocket wants micro seconds
// between 5 to 600 secs
m_Manager.DynamicSelectLoop(5 * 1000 * 1000, 600 * 1000 * 1000);
// 500 msec to 600 sec
m_Manager.DynamicSelectLoop(500 * 1000, 600 * 1000 * 1000);
}
return 0;