]> jfr.im git - solanum.git/commitdiff
core/m_server: Add AV2 description
authorAndrew Wilcox <redacted>
Mon, 7 Mar 2016 07:06:35 +0000 (01:06 -0600)
committerAndrew Wilcox <redacted>
Mon, 7 Mar 2016 07:06:39 +0000 (01:06 -0600)
modules/core/m_server.c

index c25f02b9a2a6e9623735b23a7ad7f5cfb33d7fa3..d83a3214ea009b76dbf615da822d48cc074b693a 100644 (file)
@@ -43,6 +43,8 @@
 static int mr_server(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 static int ms_server(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
 static int ms_sid(struct MsgBuf *, struct Client *, struct Client *, int, const char **);
+static const char m_server_desc[] =
+       "Provides the TS6 commands to introduce a new server to the network";
 
 struct Message server_msgtab = {
        "SERVER", 0, 0, 0, 0,
@@ -55,7 +57,7 @@ struct Message sid_msgtab = {
 
 mapi_clist_av1 server_clist[] = { &server_msgtab, &sid_msgtab, NULL };
 
-DECLARE_MODULE_AV2(server, NULL, NULL, server_clist, NULL, NULL, NULL, NULL, NULL);
+DECLARE_MODULE_AV2(server, NULL, NULL, server_clist, NULL, NULL, NULL, NULL, m_server_desc);
 
 int bogus_host(const char *host);
 static int set_server_gecos(struct Client *, const char *);