From b6ec1a6ee663f610439fe824fbd99cebae541e19 Mon Sep 17 00:00:00 2001 From: Quentin McGaw Date: Tue, 30 Apr 2024 08:04:02 +0000 Subject: [PATCH] fix(vpnunlimited): change UDP port from 1194 to 1197 --- internal/provider/vpnunlimited/connection.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/provider/vpnunlimited/connection.go b/internal/provider/vpnunlimited/connection.go index fad54c4b..45013943 100644 --- a/internal/provider/vpnunlimited/connection.go +++ b/internal/provider/vpnunlimited/connection.go @@ -8,7 +8,7 @@ import ( func (p *Provider) GetConnection(selection settings.ServerSelection, ipv6Supported bool) ( connection models.Connection, err error) { - defaults := utils.NewConnectionDefaults(0, 1194, 0) //nolint:gomnd + defaults := utils.NewConnectionDefaults(0, 1197, 0) //nolint:gomnd return utils.GetConnection(p.Name(), p.storage, selection, defaults, ipv6Supported, p.randSource) }