Merge branch 'multiplexed' into multiplexed

This commit is contained in:
Toshit 2024-03-03 21:38:15 -08:00 committed by GitHub
commit 91f0c25c7f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
25 changed files with 1674 additions and 407 deletions

View file

@ -52,11 +52,10 @@ async fn main() -> Result<(), Box<dyn Error + Send + Sync>> {
.ok_or(StrError::new("no src port"))?
.parse()?;
let addr_path= std::env::args()
let addr_path = std::env::args()
.nth(3)
.ok_or(StrError::new("no src path"))?;
let addr_dest = std::env::args()
.nth(4)
.ok_or(StrError::new("no dest addr"))?;