diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-18 22:52:24 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-18 22:52:24 +0000 |
commit | 9e7eb7a29a99958c7decd9ceb127a911b5ebbfa6 (patch) | |
tree | 3bf169f4163bc43e26f9c0ed8dbc40e25b8705d3 /src | |
parent | d80f8e9369d65c44709d0204164e877ca740e205 (diff) |
*** empty log message ***
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1437 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/inspircd.cpp | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index a9398c382..5759d1f78 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -2833,7 +2833,11 @@ int InspIRCd(char** argv, int argc) } tvs.tv_usec = 30000L; tvs.tv_sec = 0; +#ifdef IS_SOLARIS + int servresult = select(1024, &serverfds, NULL, NULL, &tvs); +#else int servresult = select(32767, &serverfds, NULL, NULL, &tvs); +#endif if (servresult > 0) { for (int x = 0; x != SERVERportCount; x++) @@ -2969,7 +2973,7 @@ int InspIRCd(char** argv, int argc) statsDnsBad++; FullConnectUser(curr); if (fd_ref_table[currfd] != curr) // something changed, bail pronto - goto label; + goto label; } if ((curr->dns_done) && (curr->registered == 3) && (AllModulesReportReady(curr))) // both NICK and USER... and DNS { @@ -3091,14 +3095,26 @@ int InspIRCd(char** argv, int argc) userrec* cu = fd_ref_table[ke.ident]; #endif #ifdef USE_SELECT + tval.tv_sec = 0; tval.tv_usec = 1000L; +#ifdef IS_SOLARIS + selectResult2 = select(1024, &sfd, NULL, NULL, &tval); +#else selectResult2 = select(65535, &sfd, NULL, NULL, &tval); +#endif // now loop through all of the items in this pool if any are waiting - if (selectResult2 > 0) + if ((selectResult2 > 0) && (xcount != clientlist.end())) +#ifdef IS_SOLARIS + // on solaris, we cycle the entire list. Something is b0rked about referencing it by count2a. + for (user_hash::iterator count2a = clientlist.begin(); count2a != clientlist.end(); count2a++) +#else for (user_hash::iterator count2a = xcount; count2a != endingiter; count2a++) +#endif { // SELECT: we have to iterate... + if (count2a == clientlist.end()) + break; userrec* cu = count2a->second; #endif @@ -3239,7 +3255,9 @@ int InspIRCd(char** argv, int argc) } } +#ifndef IS_SOLARIS if ((currfd < 0) || (!fd_ref_table[currfd])) +#endif goto label; } |