New feature: call someone directly by fingerprint through the relay.
- Client connects with SNI "_signal" for persistent signaling
- RegisterPresence/RegisterPresenceAck for relay registration
- DirectCallOffer routed to target by fingerprint
- DirectCallAnswer with AcceptGeneric/AcceptTrusted/Reject modes
- Relay creates private room (call-{id}), sends CallSetup to both
- Both clients connect to private room for media (existing SFU path)
- Hangup forwarding + cleanup on disconnect
- Desktop CLI: --signal + --call <fingerprint> for testing
- CallRegistry tracks call state (Pending/Ringing/Active/Ended)
- SignalHub manages persistent signaling connections
Tested: Alice calls Bob by fingerprint, relay routes offer, Bob
auto-accepts, both join private room, media flows bidirectionally.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
1.2 KiB
Rust
36 lines
1.2 KiB
Rust
//! WarzonePhone Protocol — shared types, traits, and core logic.
|
|
//!
|
|
//! This crate defines the contracts between all other wzp-* crates.
|
|
//! It contains:
|
|
//! - Wire format types (MediaHeader, MediaPacket, SignalMessage)
|
|
//! - Codec, FEC, crypto, and transport trait definitions
|
|
//! - Adaptive quality controller
|
|
//! - Jitter buffer
|
|
//! - Session state machine
|
|
//!
|
|
//! Compatible with the Warzone messenger identity model:
|
|
//! - Identity = 32-byte seed → HKDF → Ed25519 (signing) + X25519 (encryption)
|
|
//! - Fingerprint = SHA-256(Ed25519 pub)[:16]
|
|
|
|
pub mod bandwidth;
|
|
pub mod codec_id;
|
|
pub mod error;
|
|
pub mod jitter;
|
|
pub mod packet;
|
|
pub mod quality;
|
|
pub mod session;
|
|
pub mod traits;
|
|
|
|
// Re-export key types at crate root for convenience.
|
|
pub use codec_id::{CodecId, QualityProfile};
|
|
pub use error::*;
|
|
pub use packet::{
|
|
CallAcceptMode, HangupReason, MediaHeader, MediaPacket, MiniFrameContext, MiniHeader,
|
|
QualityReport, RoomParticipant, SignalMessage, TrunkEntry, TrunkFrame, FRAME_TYPE_FULL,
|
|
FRAME_TYPE_MINI,
|
|
};
|
|
pub use bandwidth::{BandwidthEstimator, CongestionState};
|
|
pub use quality::{AdaptiveQualityController, NetworkContext, Tier};
|
|
pub use session::{Session, SessionEvent, SessionState};
|
|
pub use traits::*;
|