diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2023-08-30 13:41:43 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2023-09-05 11:27:08 +0200 |
| commit | 3bc982a60577b526901b2246a49a29ae633aa374 (patch) | |
| tree | 6f4cf94f460b18bdf064e0a66f07098194f9f536 /mullvad-cli/src | |
| parent | ed8eac75a4c3c66c63d7214362f59538a35ce391 (diff) | |
| download | mullvadvpn-3bc982a60577b526901b2246a49a29ae633aa374.tar.xz mullvadvpn-3bc982a60577b526901b2246a49a29ae633aa374.zip | |
Remove forwarded port from devices in Rust code
Diffstat (limited to 'mullvad-cli/src')
| -rw-r--r-- | mullvad-cli/src/cmds/account.rs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mullvad-cli/src/cmds/account.rs b/mullvad-cli/src/cmds/account.rs index d0da9165fc..3b3d12b153 100644 --- a/mullvad-cli/src/cmds/account.rs +++ b/mullvad-cli/src/cmds/account.rs @@ -112,9 +112,6 @@ impl Account { println!("Device id : {}", device.device.id); println!("Device pubkey : {}", device.device.pubkey); println!("Device created : {}", device.device.created,); - for port in device.device.ports { - println!("Device port : {port}"); - } } let expiry = rpc.get_account_data(device.account_token).await?; println!( @@ -156,9 +153,6 @@ impl Account { "Created : {}", device.created.with_timezone(&chrono::Local) ); - for port in device.ports { - println!("Port : {port}"); - } } else { println!("{}", device.pretty_name()); } |
