#websocket #ws #decoder #no-std

no-std ws-frame

一个小型、零拷贝WebSocket解码器

1个不稳定版本

0.1.1 2019年7月30日

#ws中排名第15

MIT许可协议

8KB
161

ws-frame

WebSocket (RFC6455) 帧解码库。

示例

use ws_frame::{Frame, Opcode};

let buf = [0b10100010, 0b00000001, 0b00000010];
let mut f = Frame::empty();

if f.decode(&buf).is_complete() {
    if Opcode::Ping == f.head.unwrap().op {
        println!("Pong!")
    }
}

依赖项

~120KB