libwisp 0.2.0

a simple-to-use wisp rust library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(non_snake_case)]
#![allow(unused_imports)]
// ^^ for some reason,
//    client.rs throws
//    warning about unused
//    imports but when i remove
//    them it complains about not
//    having said imports :/

pub mod types;
pub mod client;
pub mod http;
pub mod pkt;

pub use pkt::{WispSendPkt, WispReadPkt};
pub use types::{WispContext, ConnectionType, WispPktType};
pub use client::{WispSetServer, WispGetServer, WispSetConnectionType, WispGetConnectionType, WispSwitchServer, WispClose};
pub use http::{WispHTTPRequest, WispHTTPResponse, WispHTTPMethod};