diff options
| author | Emīls Piņķis <emils@mullvad.net> | 2019-06-04 20:34:22 +0100 |
|---|---|---|
| committer | Emīls Piņķis <emils@mullvad.net> | 2019-06-05 13:16:04 +0100 |
| commit | 441c98e3e72bf43020397cd009cfab0754dc4810 (patch) | |
| tree | 2886e2a08afa81488a4b31cbfd69362b91f915a0 /gui/src/main | |
| parent | de03a1237142e9a86efd069f60b608c31f90d5fa (diff) | |
| download | mullvadvpn-441c98e3e72bf43020397cd009cfab0754dc4810.tar.xz mullvadvpn-441c98e3e72bf43020397cd009cfab0754dc4810.zip | |
Add BridgeEndpoint to TunnelEndpoint in GUI
Diffstat (limited to 'gui/src/main')
| -rw-r--r-- | gui/src/main/daemon-rpc.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gui/src/main/daemon-rpc.ts b/gui/src/main/daemon-rpc.ts index bd76896569..86ef3dff0a 100644 --- a/gui/src/main/daemon-rpc.ts +++ b/gui/src/main/daemon-rpc.ts @@ -240,6 +240,13 @@ const tunnelStateTransitionSchema = oneOf( address: string, protocol: enumeration('tcp', 'udp'), tunnel_type: enumeration('wireguard', 'openvpn'), + proxy: maybe( + partialObject({ + address: string, + protocol: enumeration('tcp', 'udp'), + proxy_type: enumeration('shadowsocks', 'custom'), + }), + ), }), }), object({ |
