websocket-simple 0.1.1

simple websocket for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The deflate module provides tools for applying the permessage-deflate extension.

extern crate libz_sys as ffi;
extern crate libc;

mod context;
mod extension;

pub use self::extension::{DeflateHandler, DeflateBuilder, DeflateSettings};