summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-21 21:54:19 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2004-04-21 21:54:19 +0000
commitc605a319a7502bd930cdc9649115877b51fbcbd8 (patch)
tree117fdbdcfaec7a5450113836666ae8875ef4c3c3 /src/inspircd.cpp
parent6c9a863c019952343ea558e16d3157f8ee575eab (diff)
Various services compatibility stuff
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@687 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index ac32b0e92..c31464733 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -2785,6 +2785,7 @@ void process_buffer(const char* cmdbuf,userrec *user)
void DoSync(serverrec* serv, char* tcp_host)
{
char data[MAXBUF];
+ log(DEBUG,"Sending sync");
// send start of sync marker: Y <timestamp>
// at this point the ircd receiving it starts broadcasting this netburst to all ircds
// except the ones its receiving it from.
@@ -2821,6 +2822,7 @@ void DoSync(serverrec* serv, char* tcp_host)
}
snprintf(data,MAXBUF,"F %d",time(NULL));
serv->SendPacket(data,tcp_host);
+ log(DEBUG,"Sent sync");
// ircd sends its serverlist after the end of sync here
}