summaryrefslogtreecommitdiff
path: root/pkg/bitmask/bitmask.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/bitmask/bitmask.go')
-rw-r--r--pkg/bitmask/bitmask.go8
1 files changed, 1 insertions, 7 deletions
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)