/* HostServ core functions * * (C) 2003-2011 Anope Team * Contact us at team@anope.org * * Please read COPYING and README for further details. * * Based on the original code of Epona by Lara. * Based on the original code of Services by Andy Church. */ /*************************************************************************/ #include "module.h" class CommandHSOff : public Command { public: CommandHSOff() : Command("OFF", 0, 0) { this->SetDesc("Deactivates your assigned vhost"); } CommandReturn Execute(CommandSource &source, const std::vector ¶ms) { User *u = source.u; NickAlias *na = findnick(u->nick); if (!na || !na->hostinfo.HasVhost()) source.Reply(LanguageString::HOST_NOT_ASSIGNED); else { ircdproto->SendVhostDel(u); Log(LOG_COMMAND, u, this) << "to disable their vhost"; source.Reply(_("Your vhost was removed and the normal cloaking restored.")); } return MOD_CONT; } bool OnHelp(CommandSource &source, const Anope::string &subcommand) { source.Reply(_("Syntax: \002OFF\002\n" "Deactivates the vhost currently assigned to the nick in use.\n" "When you use this command any user who performs a /whois\n" "on you will see your real IP address.")); return true; } }; class HSOff : public Module { CommandHSOff commandhsoff; public: HSOff(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator) { this->SetAuthor("Anope"); this->SetType(CORE); this->AddCommand(HostServ, &commandhsoff); } }; MODULE_INIT(HSOff)