From 3503fd00f2396454fe6676a3f57c323a4eaefb75 Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 13 Apr 2005 13:42:19 +0000 Subject: 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 --- src/inspircd.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/inspircd.cpp') 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; } -- cgit v1.2.3