rifts 0.2.0

Rift Realtime Protocol / 1.0 โ€” server-side implementation
Documentation
1
2
3
4
5
6
7
8
9
10
//! Frame envelope โ€” the wire-level message container for Rift/1.
//!
//! See spec ยง6. Every piece of information exchanged on a Rift/1
//! connection (control, data, ack, flow, error) is a `Frame`.

pub mod envelope;
pub mod types;

pub use envelope::Frame;
pub use types::{Codec, FrameFlags, FrameType, Priority};