feat(batch19): merge accounts-core

This commit is contained in:
Joseph Doherty
2026-02-28 20:39:43 -05:00
8 changed files with 2591 additions and 5 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1686,6 +1686,18 @@ public sealed partial class ClientConnection
}
}
internal void ProcessUnsub(byte[] sid)
{
lock (_mu)
{
if (Subs == null)
return;
var sidText = Encoding.ASCII.GetString(sid);
Subs.Remove(sidText);
}
}
// features 440-441: processInfo, processErr
internal void ProcessInfo(string info)
{