quad-net 0.1.1

Miniquad friendly network abstractions
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Client and server abstraction to make a socket-like connection
//! on both desktop and web.
//!
//! Works through TCP on the desktop and through WebSocket on web.
//! Server will be capable to receive connections with both TCP and WebSocket
//! and QuadSocket client will automatically use the only web tech available on 
//! the current platform

pub mod client;

#[cfg(not(target_arch = "wasm32"))]
pub mod server;

#[cfg(not(target_arch = "wasm32"))]
mod protocol;