1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 06:33:13 +02:00

Fix the message counts in RPL_STATSLINKINFO.

This commit is contained in:
Sadie Powell
2026-03-26 11:54:23 +00:00
parent 7e2ef3774b
commit b199d74088
4 changed files with 8 additions and 3 deletions
+1 -1
View File
@@ -76,6 +76,7 @@ void Uplink::SendInternal(const Anope::map<Anope::string> &tags, const MessageSo
if (!IRCD->Format(message, tags, source, command, params))
return;
UplinkSock->sent_msgs++;
UplinkSock->Write(message);
Log(LOG_RAWIO) << "Sent " << message;
@@ -108,7 +109,6 @@ void Uplink::SendInternal(const Anope::map<Anope::string> &tags, const MessageSo
UplinkSocket::UplinkSocket() : Socket(-1, Config->Uplinks[Anope::CurrentUplink].protocol), ConnectionSocket(), BufferedSocket()
{
error = false;
UplinkSock = this;
}