diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-13 13:42:19 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-04-13 13:42:19 +0000 |
commit | 3503fd00f2396454fe6676a3f57c323a4eaefb75 (patch) | |
tree | c3096972abfd2b2396e39c44d5d77867470aef8c /src/inspircd.cpp | |
parent | 654ff4ae2f06704de2beb1050021c8196f693cb5 (diff) |
Updated to support OnSendList
Fixed to allow server to server traffic again (DOH)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1074 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 27dfe9364..39fe13317 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -3758,8 +3758,6 @@ int InspIRCd(void) // we only read time() once per iteration rather than tons of times! TIME = time(NULL); - //user_hash::iterator count2 = clientlist.begin(); - // *FIX* Instead of closing sockets in kill_link when they receive the ERROR :blah line, we should queue // them in a list, then reap the list every second or so. if (((TIME % 5) == 0) && (!expire_run)) @@ -3803,6 +3801,7 @@ int InspIRCd(void) // serverFds timevals went here tvs.tv_usec = 7000L; + tvs.tv_sec = 0; int servresult = select(32767, &serverfds, NULL, NULL, &tvs); if (servresult > 0) { @@ -3838,6 +3837,7 @@ int InspIRCd(void) { char udp_msg[MAXBUF]; strlcpy(udp_msg,msgs[ctr].c_str(),MAXBUF); + log(DEBUG,"Processing: %s",udp_msg); if (strlen(udp_msg)<1) { log(DEBUG,"Invalid string from %s [route%d]",tcp_host,x); @@ -3859,6 +3859,7 @@ int InspIRCd(void) std::string msg = udp_msg; FOREACH_MOD OnPacketReceive(msg,tcp_host); strlcpy(udp_msg,msg.c_str(),MAXBUF); + handle_link_packet(udp_msg, tcp_host, me[x]); } goto label; } |