diff options
author | Adam <adam@sigterm.info> | 2016-04-14 19:17:39 -0500 |
---|---|---|
committer | Adam <adam@sigterm.info> | 2016-04-14 19:17:39 -0500 |
commit | a8f66578b1a7ee748cd67acff7f8f3f3324c0a6b (patch) | |
tree | 672e47f819dda557e1fe8e9677ea5678bff2bd94 /modules/protocol/unreal.cpp | |
parent | ca39aeb554ccfd394ba63666dca6118a826479f3 (diff) | |
parent | 82816cb2061afa1c3b583a0d1941a37043388de0 (diff) |
Merge pull request #161 from Zoddo/charybdis/vhost_svslogin
Send vident/vhost in SVSLOGIN with SASL
Diffstat (limited to 'modules/protocol/unreal.cpp')
-rw-r--r-- | modules/protocol/unreal.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/unreal.cpp b/modules/protocol/unreal.cpp index 81cf36c73..cff2f440b 100644 --- a/modules/protocol/unreal.cpp +++ b/modules/protocol/unreal.cpp @@ -386,7 +386,7 @@ class UnrealIRCdProto : public IRCDProto UplinkSocket::Message(BotInfo::Find(message.source)) << "SASL " << message.target.substr(0, p) << " " << message.target << " " << message.type << " " << message.data << (message.ext.empty() ? "" : " " + message.ext); } - void SendSVSLogin(const Anope::string &uid, const Anope::string &acc) anope_override + void SendSVSLogin(const Anope::string &uid, const Anope::string &acc, const Anope::string &vident, const Anope::string &vhost) anope_override { size_t p = uid.find('!'); if (p == Anope::string::npos) |