diff --git a/easytier/src/tunnel/mpsc.rs b/easytier/src/tunnel/mpsc.rs index e131d66b..7e7d51ef 100644 --- a/easytier/src/tunnel/mpsc.rs +++ b/easytier/src/tunnel/mpsc.rs @@ -50,7 +50,7 @@ pub struct MpscTunnel { impl MpscTunnel { pub fn new(tunnel: T, send_timeout: Option) -> Self { - let (tx, mut rx) = hotpath::channel!(channel(32)); + let (tx, mut rx) = hotpath::channel!(channel(1024)); let (stream, mut sink) = tunnel.split(); let task = tokio::spawn(async move {