1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 15:43:15 +02:00

Implement support for immutable account identifiers.

This commit is contained in:
Sadie Powell
2020-09-10 15:15:34 +01:00
committed by GitHub
parent ff28985384
commit 8180dd414e
6 changed files with 201 additions and 4 deletions
+2
View File
@@ -406,11 +406,13 @@ class InspIRCd3Proto : public IRCDProto
return;
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :" << na->nc->display;
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountid :" << na->nc->GetId();
}
void SendLogout(User *u) anope_override
{
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountname :";
UplinkSocket::Message(Me) << "METADATA " << u->GetUID() << " accountid :";
}
void SendChannel(Channel *c) anope_override