parse: get rid of report_messages
It is a function with a single usage, that is used only for one specific stats command on one line.
This commit is contained in:
parent
e9ffc3c153
commit
e8f1c19e7b
3 changed files with 20 additions and 35 deletions
32
ircd/parse.c
32
ircd/parse.c
|
@ -338,38 +338,6 @@ mod_del_cmd(struct Message *msg)
|
|||
irc_dictionary_delete(cmd_dict, msg->cmd);
|
||||
}
|
||||
|
||||
/*
|
||||
* report_messages
|
||||
*
|
||||
* inputs - pointer to client to report to
|
||||
* output - NONE
|
||||
* side effects - NONE
|
||||
*/
|
||||
void
|
||||
report_messages(struct Client *source_p)
|
||||
{
|
||||
struct DictionaryIter iter;
|
||||
struct Message *msg;
|
||||
struct alias_entry *amsg;
|
||||
|
||||
DICTIONARY_FOREACH(msg, &iter, cmd_dict)
|
||||
{
|
||||
s_assert(msg->cmd != NULL);
|
||||
sendto_one_numeric(source_p, RPL_STATSCOMMANDS,
|
||||
form_str(RPL_STATSCOMMANDS),
|
||||
msg->cmd, msg->count,
|
||||
msg->bytes, msg->rcount);
|
||||
}
|
||||
|
||||
DICTIONARY_FOREACH(amsg, &iter, alias_dict)
|
||||
{
|
||||
s_assert(amsg->name != NULL);
|
||||
sendto_one_numeric(source_p, RPL_STATSCOMMANDS,
|
||||
form_str(RPL_STATSCOMMANDS),
|
||||
amsg->name, amsg->hits, 0L, 0);
|
||||
}
|
||||
}
|
||||
|
||||
/* cancel_clients()
|
||||
*
|
||||
* inputs - client who sent us the message, client with fake
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue