MultiServer: slight optimizations (#5527)

* Core: optimize MultiServer.Client

* Core: optimize websocket compression settings
This commit is contained in:
black-sliver
2025-10-08 00:22:34 +00:00
committed by GitHub
parent 5a933a160a
commit e907980ff0
5 changed files with 286 additions and 7 deletions

View File

@@ -174,6 +174,8 @@ decode = JSONDecoder(object_hook=_object_hook).decode
class Endpoint:
__slots__ = ("socket",)
socket: "ServerConnection"
def __init__(self, socket):