HotFix: IVPN add TCP and UDP fields

This commit is contained in:
Quentin McGaw (desktop)
2021-05-31 00:41:44 +00:00
parent 3c3cd431cd
commit 9be912e9fd
5 changed files with 49 additions and 49 deletions

View File

@@ -57,8 +57,8 @@ type IvpnServer struct {
}
func (s *IvpnServer) String() string {
return fmt.Sprintf("{Country: %q, City: %q, Hostname: %q, IPs: %s}",
s.Country, s.City, s.Hostname, goStringifyIPs(s.IPs))
return fmt.Sprintf("{Country: %q, City: %q, Hostname: %q, TCP: %t, UDP: %t, IPs: %s}",
s.Country, s.City, s.Hostname, s.TCP, s.UDP, goStringifyIPs(s.IPs))
}
type MullvadServer struct {