summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorEmīls Piņķis <emils@mullvad.net>2019-06-05 17:37:38 +0100
committerEmīls Piņķis <emils@mullvad.net>2019-06-06 12:00:30 +0100
commit35a2f4db5734b27d0a47a24a641d55fe5d89afe9 (patch)
treeadf1c930d79523d8f75685b2946fb665d40bda8d /gui/src
parent9ab06703eba719bafeef9495cd2aa16cfbd13d1e (diff)
downloadmullvadvpn-35a2f4db5734b27d0a47a24a641d55fe5d89afe9.tar.xz
mullvadvpn-35a2f4db5734b27d0a47a24a641d55fe5d89afe9.zip
Add bridge_hostname to GeoIpLocation
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/main/daemon-rpc.ts1
-rw-r--r--gui/src/shared/daemon-rpc-types.ts1
2 files changed, 2 insertions, 0 deletions
diff --git a/gui/src/main/daemon-rpc.ts b/gui/src/main/daemon-rpc.ts
index 86ef3dff0a..f50428ea8a 100644
--- a/gui/src/main/daemon-rpc.ts
+++ b/gui/src/main/daemon-rpc.ts
@@ -41,6 +41,7 @@ const locationSchema = maybe(
longitude: number,
mullvad_exit_ip: boolean,
hostname: maybe(string),
+ bridge_hostname: maybe(string),
}),
);
diff --git a/gui/src/shared/daemon-rpc-types.ts b/gui/src/shared/daemon-rpc-types.ts
index 3225995e75..a3f81e29be 100644
--- a/gui/src/shared/daemon-rpc-types.ts
+++ b/gui/src/shared/daemon-rpc-types.ts
@@ -12,6 +12,7 @@ export interface ILocation {
longitude: number;
mullvadExitIp: boolean;
hostname?: string;
+ bridgeHostname?: string;
}
export type BlockReason =