]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/commands/cmd_server.cpp
Update copyrights for 2009.
[user/henk/code/inspircd.git] / src / commands / cmd_server.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 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 "commands/cmd_server.h"
16
17
18
19 extern "C" DllExport Command* init_command(InspIRCd* Instance)
20 {
21         return new CommandServer(Instance);
22 }
23
24 CmdResult CommandServer::Handle (const std::vector<std::string>&, User *user)
25 {
26         if (user->registered == REG_ALL)
27         {
28                 user->WriteNumeric(ERR_ALREADYREGISTERED, "%s :You are already registered. (Perhaps your IRC client does not have a /SERVER command).",user->nick.c_str());
29         }
30         else
31         {
32                 user->WriteNumeric(ERR_NOTREGISTERED, "%s :You may not register as a server (servers have seperate ports from clients, change your config)",command.c_str());
33         }
34         return CMD_FAILURE;
35 }