diff options
| author | Markus Pettersson <markus.pettersson@mullvad.net> | 2023-09-18 15:30:50 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2023-10-09 14:40:05 +0200 |
| commit | be3da7e67723c96bdb997fb6e7dcbfebc036919d (patch) | |
| tree | abc92e3df83eee6d40227876e65e4d7090bf9c1d /mullvad-daemon/src | |
| parent | b66d4bf941cba35375fb6c3ae1665546d0a16d12 (diff) | |
| download | mullvadvpn-be3da7e67723c96bdb997fb6e7dcbfebc036919d.tar.xz mullvadvpn-be3da7e67723c96bdb997fb6e7dcbfebc036919d.zip | |
Add naming custom access methods
Just a bookkeeping feature for the end user
Diffstat (limited to 'mullvad-daemon/src')
| -rw-r--r-- | mullvad-daemon/src/api.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mullvad-daemon/src/api.rs b/mullvad-daemon/src/api.rs index 26974ed4ee..e8568ac684 100644 --- a/mullvad-daemon/src/api.rs +++ b/mullvad-daemon/src/api.rs @@ -138,7 +138,8 @@ impl ApiConnectionModeProvider { ss_settings.peer, ss_settings.cipher, ss_settings.password, - *enabled, + enabled, + "Mullvad Bridges".to_string(), // TODO: Move this to some central location ); Some(ApiConnectionMode::Proxied(ProxyConfig::Shadowsocks( ss_settings, |
