From 3baa3b7eba9696e69958c89a2b004a219f8c8d00 Mon Sep 17 00:00:00 2001 From: "kali kaneko (leap communications)" Date: Wed, 17 Mar 2021 23:46:46 +0100 Subject: fix filter gws by transport --- pkg/bitmask/bitmask.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'pkg/bitmask') diff --git a/pkg/bitmask/bitmask.go b/pkg/bitmask/bitmask.go index e284541..156af58 100644 --- a/pkg/bitmask/bitmask.go +++ b/pkg/bitmask/bitmask.go @@ -15,6 +15,10 @@ package bitmask +import ( + "0xacab.org/leap/bitmask-vpn/pkg/vpn/bonafide" +) + type Bitmask interface { GetStatusCh() <-chan string Close() @@ -26,9 +30,11 @@ type Bitmask interface { GetStatus() (string, error) InstallHelpers() error VPNCheck() (helpers bool, priviledge bool, err error) - ListGatewaysByCity(provider string) (map[string]string, error) + /* this is kind of breaking the abstract interface, maybe we don't need this anymore */ + ListGatewaysByCity(protocol string) (map[string]bonafide.Gateway, error) UseGateway(name string) error GetCurrentGateway() string + GetCurrentLocation() string GetGatewayDetails(label string) (interface{}, error) UseTransport(transport string) error NeedsCredentials() bool -- cgit v1.2.3