- PoW (Hashcash) authentication - X.509 CA for phone number certificates (+0 XXX YYY ZZZ) - QUIC transport (hysteria quic-go fork) with ACME TLS - Custom append-only DB engine (from NikoGram) - Call signaling (dial/ring/accept/reject/end) - E2EE media relay (X25519 + ChaCha20-Poly1305) - Brutal congestion control (from hysteria) - Media datagram relay (Opus/VP9/H264/H265) - Graceful shutdown
21 lines
414 B
Go
21 lines
414 B
Go
package types
|
|
|
|
type OpCode byte
|
|
|
|
const (
|
|
OpGetChallenge OpCode = 0x01
|
|
OpChallenge OpCode = 0x02
|
|
OpSolve OpCode = 0x03
|
|
OpIdentity OpCode = 0x04
|
|
OpReroll OpCode = 0x05
|
|
|
|
OpDial OpCode = 0x10
|
|
OpRing OpCode = 0x11
|
|
OpAccept OpCode = 0x12
|
|
OpPeerAccept OpCode = 0x13
|
|
OpReject OpCode = 0x14
|
|
OpEnd OpCode = 0x15
|
|
OpPeerEnd OpCode = 0x16
|
|
|
|
OpError OpCode = 0xFF
|
|
)
|