Rebrand the Rust client crate (coven/ → hh/, package+binary "hack-house"), README, CLI strings, and branch (coven → hack-house). Gitea repo renamed cmd-chat → hack-house to match. Crypto/server logic unchanged; selftest + golden-vector test still green, binary is now `hack-house`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
394 B
Cython
20 lines
394 B
Cython
cdef class Server:
|
|
cdef:
|
|
list _servers
|
|
list _waiters
|
|
int _active_count
|
|
Loop _loop
|
|
bint _serving
|
|
object _serving_forever_fut
|
|
object __weakref__
|
|
|
|
cdef _add_server(self, UVStreamServer srv)
|
|
cdef _start_serving(self)
|
|
cdef _wakeup(self)
|
|
|
|
cdef _attach(self)
|
|
cdef _detach(self)
|
|
|
|
cdef _ref(self)
|
|
cdef _unref(self)
|