sendspin 0.2.0

Hyper-efficient Rust implementation of the Sendspin Protocol for synchronized multi-room audio streaming
Documentation
1
2
3
4
5
6
7
8
9
10
// ABOUTME: Clock synchronization for Sendspin protocol
// ABOUTME: NTP-style round-trip time calculation and server timestamp conversion

/// Clock synchronization implementation
pub mod clock;
/// Raw monotonic clock trait and platform implementations
pub mod raw_clock;

pub use clock::{ClockSync, SyncQuality};
pub use raw_clock::{Clock, DefaultClock};