Remove cruft left behind by removed stats_p_hook.
[seven-1.x.git] / modules / sno_routing.c
blobe6278b10e07eb5f9971997871e8350e946382e28
1 /*
2 * charybdis: an advanced Internet Relay Chat Daemon(ircd).
3 * sno_routing.c: Shows notices about netjoins and netsplits
5 * Copyright (c) 2005-2006 Jilles Tjoelker <jilles-at-stack.nl>
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
11 * 1.Redistributions of source code must retain the above copyright notice,
12 * this list of conditions and the following disclaimer.
13 * 2.Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3.The name of the author may not be used to endorse or promote products
17 * derived from this software without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22 * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
23 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
24 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
28 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
32 #include "stdinc.h"
33 #include "modules.h"
34 #include "client.h"
35 #include "hook.h"
36 #include "ircd.h"
37 #include "send.h"
39 static void h_nn_server_eob(struct Client *);
40 static void h_nn_client_exit(hook_data_client_exit *);
42 mapi_hfn_list_av1 nn_hfnlist[] = {
43 { "server_eob", (hookfn) h_nn_server_eob },
44 { "client_exit", (hookfn) h_nn_client_exit },
45 { NULL, NULL }
48 DECLARE_MODULE_AV1(networknotice, NULL, NULL, NULL, NULL, nn_hfnlist, "$Revision: 26 $");
51 * count_mark_downlinks
53 * inputs - pointer to server to count
54 * - pointers to server and user count
55 * output - NONE
56 * side effects - servers are marked
57 * - server and user counts are added to given values
59 static void
60 count_mark_downlinks(struct Client *server_p, int *pservcount, int *pusercount)
62 dlink_node *ptr;
64 SetFloodDone(server_p);
65 (*pservcount)++;
66 *pusercount += dlink_list_length(&server_p->serv->users);
67 DLINK_FOREACH(ptr, server_p->serv->servers.head)
69 count_mark_downlinks(ptr->data, pservcount, pusercount);
73 static void
74 h_nn_server_eob(struct Client *source_p)
76 int s = 0, u = 0;
78 if (IsFloodDone(source_p))
79 return;
80 count_mark_downlinks(source_p, &s, &u);
81 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Netjoin %s <-> %s (%dS %dC)",
82 source_p->servptr ? source_p->servptr->name : "?",
83 source_p->name, s, u);
86 static void
87 h_nn_client_exit(hook_data_client_exit *hdata)
89 struct Client *source_p;
90 int s = 0, u = 0;
91 char *fromnick;
93 source_p = hdata->target;
94 fromnick = IsClient(hdata->from) ? hdata->from->name : NULL;
96 if (!IsServer(source_p))
97 return;
98 if (HasSentEob(source_p))
100 count_mark_downlinks(source_p, &s, &u);
101 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Netsplit %s <-> %s (%dS %dC) (%s%s%s%s)",
102 source_p->servptr ? source_p->servptr->name : "?",
103 source_p->name, s, u,
104 fromnick ? "by " : "",
105 fromnick ? fromnick : "",
106 fromnick ? ": " : "",
107 hdata->comment);
109 else
110 sendto_realops_snomask(SNO_GENERAL, L_ALL, "Netsplit %s <-> %s (during burst) (%s%s%s%s)",
111 source_p->servptr ? source_p->servptr->name : "?",
112 source_p->name,
113 fromnick ? "by " : "",
114 fromnick ? fromnick : "",
115 fromnick ? ": " : "",
116 hdata->comment);