summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormiwob <michael@wobst.at>2015-02-15 21:47:55 +0100
committermiwob <michael@wobst.at>2015-02-15 21:47:55 +0100
commit76337bc04ac0072019cd3025da55eecd6692490f (patch)
treee78bcb92e194a1ff289e62b470be441ee372a7b9
parentf44280a9c9f751d667b07b8de4e857cfbccd55d9 (diff)
- Misc updates to the hybrid protocol modules:
- best supported version is 8.2.x - fixed UID message handler to cope with account names being '*' - minium required TS version is TS6 now
-rw-r--r--modules/protocol/hybrid.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/protocol/hybrid.cpp b/modules/protocol/hybrid.cpp
index 438229780..4cc170574 100644
--- a/modules/protocol/hybrid.cpp
+++ b/modules/protocol/hybrid.cpp
@@ -36,7 +36,7 @@ class HybridProto : public IRCDProto
}
public:
- HybridProto(Module *creator) : IRCDProto(creator, "Hybrid 8.1.x")
+ HybridProto(Module *creator) : IRCDProto(creator, "Hybrid 8.2.x")
{
DefaultPseudoclientModes = "+oi";
CanSVSNick = true;
@@ -204,7 +204,7 @@ class HybridProto : public IRCDProto
SendServer(Me);
- UplinkSocket::Message() << "SVINFO 6 5 0 :" << Anope::CurTime;
+ UplinkSocket::Message() << "SVINFO 6 6 0 :" << Anope::CurTime;
}
void SendClientIntroduction(User *u) anope_override
@@ -550,7 +550,7 @@ struct IRCDMessageUID : IRCDMessage
ip.clear();
NickAlias *na = NULL;
- if (params[8] != "0")
+ if (params[8] != "0" && params[8] != "*")
na = NickAlias::Find(params[8]);
/* Source is always the server */