From b14d048e6089233f5c698426652e85bfa1d89488 Mon Sep 17 00:00:00 2001 From: Ruben Pollan Date: Tue, 23 Mar 2021 17:10:45 +0100 Subject: Don't expose the full gateway out of the vpn module We just care about locations and fullness. --- pkg/bitmask/bitmask.go | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'pkg/bitmask') diff --git a/pkg/bitmask/bitmask.go b/pkg/bitmask/bitmask.go index 156af58..cb7be29 100644 --- a/pkg/bitmask/bitmask.go +++ b/pkg/bitmask/bitmask.go @@ -15,10 +15,6 @@ package bitmask -import ( - "0xacab.org/leap/bitmask-vpn/pkg/vpn/bonafide" -) - type Bitmask interface { GetStatusCh() <-chan string Close() @@ -30,12 +26,10 @@ type Bitmask interface { GetStatus() (string, error) InstallHelpers() error VPNCheck() (helpers bool, priviledge bool, err error) - /* this is kind of breaking the abstract interface, maybe we don't need this anymore */ - ListGatewaysByCity(protocol string) (map[string]bonafide.Gateway, error) + ListLocationFullness(protocol string) map[string]float64 UseGateway(name string) error GetCurrentGateway() string GetCurrentLocation() string - GetGatewayDetails(label string) (interface{}, error) UseTransport(transport string) error NeedsCredentials() bool DoLogin(username, password string) (bool, error) -- cgit v1.2.3