1
0
mirror of https://github.com/anope/anope.git synced 2026-06-12 19:14:47 +02:00

Send the clock synchronisation TS token on UnrealIRCd.

This commit is contained in:
Sadie Powell
2026-02-24 23:57:39 +00:00
parent aa41fffd49
commit a01cd481b9
+2
View File
@@ -253,10 +253,12 @@ private:
// NEXTBANS: enables receiving named extended bans.
// SJSBY: enables receiving list mode setters and set timestamps.
// SID: communicates the unique identifier of the local server.
// TS: communicates the current time for clock synchronisation purposes.
// VHP: enable receiving the vhost in UID.
Uplink::Send("PROTOCTL", "BIGLINES", "EXTSWHOIS", "MLOCK", "MTAGS", "NEXTBANS", "SJSBY", "VHP");
Uplink::Send("PROTOCTL", "EAUTH=" + Me->GetName() + ",,,Anope-" + Anope::VersionShort());
Uplink::Send("PROTOCTL", "SID=" + Me->GetSID());
Uplink::Send("PROTOCTL", "TS=" + Anope::ToString(Anope::CurTime));
SendServer(Me);
}