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>
34 lines
933 B
Cython
34 lines
933 B
Cython
cdef class UnixServer(UVStreamServer):
|
|
|
|
cdef bind(self, str path)
|
|
|
|
@staticmethod
|
|
cdef UnixServer new(Loop loop, object protocol_factory, Server server,
|
|
object backlog,
|
|
object ssl,
|
|
object ssl_handshake_timeout,
|
|
object ssl_shutdown_timeout)
|
|
|
|
|
|
cdef class UnixTransport(UVStream):
|
|
|
|
@staticmethod
|
|
cdef UnixTransport new(Loop loop, object protocol, Server server,
|
|
object waiter, object context)
|
|
|
|
cdef connect(self, char* addr)
|
|
|
|
|
|
cdef class ReadUnixTransport(UVStream):
|
|
|
|
@staticmethod
|
|
cdef ReadUnixTransport new(Loop loop, object protocol, Server server,
|
|
object waiter)
|
|
|
|
|
|
cdef class WriteUnixTransport(UVStream):
|
|
|
|
@staticmethod
|
|
cdef WriteUnixTransport new(Loop loop, object protocol, Server server,
|
|
object waiter)
|