]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_map.cpp
Add comments
[user/henk/code/inspircd.git] / src / cmd_map.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "configreader.h"
16 #include "users.h"
17 #include "commands/cmd_map.h"
18
19 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
20 {
21         return new cmd_map(Instance);
22 }
23
24 /** Handle /MAP
25  */
26 CmdResult cmd_map::Handle (const char** parameters, int pcnt, userrec *user)
27 {
28         // as with /LUSERS this does nothing without a linking
29         // module to override its behaviour and display something
30         // better.
31         user->WriteServ("006 %s :%s",user->nick,ServerInstance->Config->ServerName);
32         user->WriteServ("007 %s :End of /MAP",user->nick);
33
34         return CMD_SUCCESS;
35 }