diff options
| -rw-r--r-- | talpid-tunnel-config-client/proto/ephemeralpeer.proto | 1 | ||||
| -rw-r--r-- | talpid-tunnel-config-client/src/lib.rs | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/talpid-tunnel-config-client/proto/ephemeralpeer.proto b/talpid-tunnel-config-client/proto/ephemeralpeer.proto index 7fc54002e5..5ab45a7284 100644 --- a/talpid-tunnel-config-client/proto/ephemeralpeer.proto +++ b/talpid-tunnel-config-client/proto/ephemeralpeer.proto @@ -66,6 +66,7 @@ enum DaitaPlatform { macos_wg_go = 3; ios_wg_go = 4; android_wg_go = 5; + windows_wg_go = 6; } enum DaitaLevel { diff --git a/talpid-tunnel-config-client/src/lib.rs b/talpid-tunnel-config-client/src/lib.rs index 5d2d785dba..123c828283 100644 --- a/talpid-tunnel-config-client/src/lib.rs +++ b/talpid-tunnel-config-client/src/lib.rs @@ -212,8 +212,7 @@ pub async fn request_ephemeral_peer_with( const fn get_platform() -> proto::DaitaPlatform { use proto::DaitaPlatform; const PLATFORM: DaitaPlatform = if cfg!(target_os = "windows") { - // FIXME: wggo - DaitaPlatform::LinuxWgGo + DaitaPlatform::WindowsWgGo } else if cfg!(target_os = "linux") { DaitaPlatform::LinuxWgGo } else if cfg!(target_os = "macos") { |
