mirror of
https://github.com/house-of-vanity/v2-uri-parser.git
synced 2025-12-18 07:47:53 +00:00
7 lines
140 B
Rust
7 lines
140 B
Rust
|
|
pub struct SocksAddress {
|
||
|
|
pub password: Option<String>,
|
||
|
|
pub username: Option<String>,
|
||
|
|
pub address: String,
|
||
|
|
pub port: u16,
|
||
|
|
}
|