diff options
-rw-r--r-- | data/anope.example.conf | 6 | ||||
-rw-r--r-- | data/stats.standalone.example.conf | 6 | ||||
-rw-r--r-- | modules/protocol/inspircd.cpp (renamed from modules/protocol/inspircd3.cpp) | 14 | ||||
-rw-r--r-- | modules/protocol/unrealircd.cpp (renamed from modules/protocol/unreal4.cpp) | 2 |
4 files changed, 14 insertions, 14 deletions
diff --git a/data/anope.example.conf b/data/anope.example.conf index d599c7e39..7ceb0cef6 100644 --- a/data/anope.example.conf +++ b/data/anope.example.conf @@ -254,15 +254,15 @@ serverinfo * - bahamut * - charybdis * - hybrid - * - inspircd3 + * - inspircd * - ngircd * - plexus * - ratbox - * - unreal4 (for 4.x or later) + * - unrealircd */ module { - name = "inspircd3" + name = "inspircd" /* * Some protocol modules can enforce mode locks server-side. This reduces the spam caused by diff --git a/data/stats.standalone.example.conf b/data/stats.standalone.example.conf index 93d85811c..6f1dc7bfc 100644 --- a/data/stats.standalone.example.conf +++ b/data/stats.standalone.example.conf @@ -254,15 +254,15 @@ serverinfo * - bahamut * - charybdis * - hybrid - * - inspircd3 + * - inspircd * - ngircd * - plexus * - ratbox - * - unreal4 (for 4.x or later) + * - unrealircd */ module { - name = "inspircd3" + name = "inspircd" } /* diff --git a/modules/protocol/inspircd3.cpp b/modules/protocol/inspircd.cpp index 71d45f9a8..e597ce958 100644 --- a/modules/protocol/inspircd3.cpp +++ b/modules/protocol/inspircd.cpp @@ -1,4 +1,4 @@ -/* InspIRCd 3.0 functions +/* InspIRCd functions * * (C) 2003-2020 Anope Team * Contact us at team@anope.org @@ -24,7 +24,7 @@ static std::list<SASLUser> saslusers; static Anope::string rsquit_server, rsquit_id; -class InspIRCd3Proto : public IRCDProto +class InspIRCdProto : public IRCDProto { private: void SendChgIdentInternal(const Anope::string &nick, const Anope::string &vIdent) @@ -54,7 +54,7 @@ class InspIRCd3Proto : public IRCDProto } public: - InspIRCd3Proto(Module *creator) : IRCDProto(creator, "InspIRCd 3") + InspIRCdProto(Module *creator) : IRCDProto(creator, "InspIRCd 3+") { DefaultPseudoclientModes = "+I"; CanSVSNick = true; @@ -1794,9 +1794,9 @@ struct IRCDMessageUID : IRCDMessage } }; -class ProtoInspIRCd3 : public Module +class ProtoInspIRCd : public Module { - InspIRCd3Proto ircd_proto; + InspIRCdProto ircd_proto; ExtensibleItem<bool> ssl; /* Core message handlers */ @@ -1843,7 +1843,7 @@ class ProtoInspIRCd3 : public Module } public: - ProtoInspIRCd3(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PROTOCOL | VENDOR), + ProtoInspIRCd(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PROTOCOL | VENDOR), ircd_proto(this), ssl(this, "ssl"), message_error(this), message_invite(this), message_kill(this), message_motd(this), message_notice(this), message_part(this), message_privmsg(this), message_quit(this), message_stats(this), @@ -1937,4 +1937,4 @@ class ProtoInspIRCd3 : public Module } }; -MODULE_INIT(ProtoInspIRCd3) +MODULE_INIT(ProtoInspIRCd) diff --git a/modules/protocol/unreal4.cpp b/modules/protocol/unrealircd.cpp index 3f30abffa..99466074d 100644 --- a/modules/protocol/unreal4.cpp +++ b/modules/protocol/unrealircd.cpp @@ -1,4 +1,4 @@ -/* Unreal IRCD 4 functions +/* UnrealIRCd functions * * (C) 2003-2020 Anope Team * Contact us at team@anope.org |