Move tokio_kcp to local files
This commit is contained in:
14
src/plugins/kcp/mod.rs
Normal file
14
src/plugins/kcp/mod.rs
Normal 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;
|
Reference in New Issue
Block a user