cf65bc1295
* socks5: wait to close buffer This is the fix proposed by @simonwicky in https://github.com/nymtech/nym/issues/1701 * socks5: fix typo in patch * socks5: fix tests * socks5: add type for returned data and index * socks5: make closed_at_index an Option * changelog: add note
9 lines
200 B
Rust
9 lines
200 B
Rust
mod buffer;
|
|
mod message;
|
|
mod sender;
|
|
|
|
pub use buffer::{OrderedMessageBuffer, ReadContiguousData};
|
|
pub use message::MessageError;
|
|
pub use message::OrderedMessage;
|
|
pub use sender::OrderedMessageSender;
|