Files
aletheia/backend/venv/lib/python3.12/site-packages/uvloop/handles/udp.pxd
bigtux 20a26affaa 📚 Documentação inicial do ALETHEIA
- MANUAL-PRODUTO.md: Manual do usuário final
- MANUAL-VENDAS.md: Estratégia comercial e vendas
- MANUAL-TECNICO.md: Infraestrutura e deploy
- README.md: Visão geral do projeto
2026-02-10 15:08:15 -03:00

23 lines
671 B
Cython

cdef class UDPTransport(UVBaseTransport):
cdef:
bint __receiving
int _family
object _address
cdef _init(self, Loop loop, unsigned int family)
cdef _set_address(self, system.addrinfo *addr)
cdef _connect(self, system.sockaddr* addr, size_t addr_len)
cdef _bind(self, system.sockaddr* addr)
cdef open(self, int family, int sockfd)
cdef _set_broadcast(self, bint on)
cdef inline __receiving_started(self)
cdef inline __receiving_stopped(self)
cdef _send(self, object data, object addr)
cdef _on_receive(self, bytes data, object exc, object addr)
cdef _on_sent(self, object exc, object context=*)