Implement TcpTransport and TcpAcceptor for plain TCP connections

This commit is contained in:
2026-06-02 09:23:35 +00:00
parent dddc6d7a4c
commit b157ab3799
2 changed files with 166 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
mod tcp;
pub use tcp::{TcpAcceptor, TcpTransport};
use std::net::SocketAddr;
use anyhow::Result;