diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-09 12:20:30 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-05-09 12:20:30 +0000 |
commit | 8336fb6a708cad250217fcfb230683b78eeaaa2e (patch) | |
tree | 432b502dd630031cb3d9f06a32523ae33c22f4bc | |
parent | 3ce46fa5fe3dbd2918354d930220737a84556a6b (diff) |
- m_eob(): Re-added EOB notice
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@1985 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r-- | modules/m_eob.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/m_eob.c b/modules/m_eob.c index ddbd4c0..e052488 100644 --- a/modules/m_eob.c +++ b/modules/m_eob.c @@ -42,6 +42,12 @@ ms_eob(struct Client *client_p, struct Client *source_p, { assert(IsServer(source_p)); + if (client_p == source_p) + sendto_realops_flags(UMODE_ALL, L_ALL, SEND_NOTICE, + "End of burst from %s (%u seconds)", + source_p->name, + (unsigned int)(CurrentTime - source_p->localClient->firsttime)); + AddFlag(source_p, FLAGS_EOB); sendto_server(client_p, CAP_TS6, NOCAPS, |