rifts 0.2.0

Rift Realtime Protocol / 1.0 — server-side implementation
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Session layer — spec §5, §13.

pub mod auth;
pub mod offset_tracker;
pub mod resume;
#[allow(clippy::module_inception)]
pub mod session;

pub use auth::{AllowAllAuth, AuthContext, AuthHints, AuthProvider, TokenAuth};
pub use offset_tracker::{OffsetTracker, ResumeDecision};
pub use resume::{ResumeManager, ResumeOutcome};
pub use session::{ClientId, Session, SessionId, SessionState};