diff options
| author | Linus Färnstrand <faern@faern.net> | 2023-01-26 10:58:46 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2023-01-30 13:57:17 +0100 |
| commit | f9342dc8538ef4822e9e208d3325681a00de3439 (patch) | |
| tree | 95c96aeb27198a07a72b7c11fbb18017e7158ca5 | |
| parent | b175793d58950c89d93204031490eaeb08a721fc (diff) | |
| download | mullvadvpn-f9342dc8538ef4822e9e208d3325681a00de3439.tar.xz mullvadvpn-f9342dc8538ef4822e9e208d3325681a00de3439.zip | |
Remove "EXPERIMENTAL" from the quantum-resistant-tunnel CLI command
We still don't expose it in the UI. But we are now using the supposedly
stable endpoint on the servers. It has worked really well so far,
so we can probably be a bit less alarmist about it.
| -rw-r--r-- | mullvad-cli/src/cmds/tunnel.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mullvad-cli/src/cmds/tunnel.rs b/mullvad-cli/src/cmds/tunnel.rs index e47ac5afe5..a40aa985b9 100644 --- a/mullvad-cli/src/cmds/tunnel.rs +++ b/mullvad-cli/src/cmds/tunnel.rs @@ -60,7 +60,7 @@ fn create_wireguard_mtu_subcommand() -> clap::App<'static> { fn create_wireguard_quantum_resistant_tunnel_subcommand() -> clap::App<'static> { clap::App::new("quantum-resistant-tunnel") - .about("EXPERIMENTAL: Enables quantum-resistant PSK exchange in the tunnel") + .about("Controls the quantum-resistant PSK exchange in the tunnel") .setting(clap::AppSettings::SubcommandRequiredElseHelp) .subcommand(clap::App::new("get")) .subcommand(clap::App::new("set").arg(clap::Arg::new("policy").required(true))) |
