Move tokio_kcp to local files

This commit is contained in:
KernelErr
2021-10-26 23:02:05 +08:00
parent bfce455a7e
commit a88a263d20
15 changed files with 1010 additions and 19 deletions

14
src/plugins/kcp/mod.rs Normal file
View File

@ -0,0 +1,14 @@
//! Library of KCP on Tokio
pub use self::{
config::{KcpConfig, KcpNoDelayConfig},
listener::KcpListener,
stream::KcpStream,
};
mod config;
mod listener;
mod session;
mod skcp;
mod stream;
mod utils;