diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2023-03-20 17:12:36 +0100 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2023-09-25 09:43:37 +0200 |
| commit | 1f599f1aab37343ff61852a8616c640310dfaee4 (patch) | |
| tree | f9784b2dc5c73ceab9fbc8cf6cdaab922385c553 /client/server.go | |
| parent | cd4f13c5a8df0d7da2fbca3a741d396f220cff33 (diff) | |
Tests: Pass for V2 API
Diffstat (limited to 'client/server.go')
| -rw-r--r-- | client/server.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/server.go b/client/server.go index 00e55e8..f31da2e 100644 --- a/client/server.go +++ b/client/server.go @@ -457,7 +457,8 @@ func (c *Client) GetConfigInstituteAccess(url string, preferTCP bool, t srvtypes // GetConfigSecureInternet gets a configuration for a Secure Internet Server. // It ensures that the Secure Internet Server exists by creating or using an existing one with the orgID. // `preferTCP` indicates that the client wants to use TCP (through OpenVPN) to establish the VPN tunnel. -func (c *Client) GetConfigSecureInternet(orgID string, preferTCP bool, t srvtypes.Tokens) (cfg *srvtypes.Configuration, err error) { +// TODO: Check on first argument orgID +func (c *Client) GetConfigSecureInternet(_ string, preferTCP bool, t srvtypes.Tokens) (cfg *srvtypes.Configuration, err error) { defer func() { if err != nil { c.logError(err) |
