Move module description headers to the top
This is cleaner. Note this was broken out of a much larger piece of work I did, so if there's any problems, I apologise!
This commit is contained in:
parent
6287d57fa9
commit
eeabf33a7c
127 changed files with 400 additions and 342 deletions
|
@ -35,17 +35,19 @@
|
|||
#include "s_conf.h"
|
||||
#include "s_serv.h"
|
||||
|
||||
static int m_ping(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
||||
static int ms_ping(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
||||
static const char ping_desc[] =
|
||||
"Provides the PING command to ensure a client or server is still alive";
|
||||
|
||||
static int m_ping(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
||||
static int ms_ping(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
|
||||
|
||||
struct Message ping_msgtab = {
|
||||
"PING", 0, 0, 0, 0,
|
||||
{mg_unreg, {m_ping, 2}, {ms_ping, 2}, {ms_ping, 2}, mg_ignore, {m_ping, 2}}
|
||||
};
|
||||
|
||||
mapi_clist_av1 ping_clist[] = { &ping_msgtab, NULL };
|
||||
|
||||
DECLARE_MODULE_AV2(ping, NULL, NULL, ping_clist, NULL, NULL, NULL, NULL, ping_desc);
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue