(selection settings.ServerSelection, ipv6Supported bool)
| 10 | // Provider contains methods to read and modify the openvpn configuration to connect as a client. |
| 11 | type Provider interface { |
| 12 | GetConnection(selection settings.ServerSelection, ipv6Supported bool) (connection models.Connection, err error) |
| 13 | OpenVPNConfig(connection models.Connection, settings settings.OpenVPN, ipv6Supported bool) (lines []string) |
| 14 | Name() string |
| 15 | FetchServers(ctx context.Context, minServers int) ( |
no outgoing calls