moq-rs/moq-warp/src/model/fragment.rs
Luke Curley 975d6b2580 Fix the buffering used for parsing.
fill_buf didn't work like I expected. This code is much better anyway.
2023-08-02 11:25:41 -07:00

6 lines
131 B
Rust

use super::watch;
use bytes::Bytes;
pub type Publisher = watch::Publisher<Bytes>;
pub type Subscriber = watch::Subscriber<Bytes>;