Parse socks

This commit is contained in:
Keivan-sf
2025-07-27 21:50:52 +03:30
parent 863b9321b5
commit 65721cd5e3
10 changed files with 146 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
pub struct SocksAddress {
pub password: Option<String>,
pub username: Option<String>,
pub address: String,
pub port: u16,
}