* Split provider/pia.go in piav3.go and piav4.go * Change port forwarding signature * Enable port forwarding parameter for PIA v4 * Fix VPN gateway IP obtention * Setup HTTP client for TLS with custom cert * Error message for regions not supporting pf
14 lines
396 B
Go
14 lines
396 B
Go
package constants
|
|
|
|
const (
|
|
// Announcement is a message announcement
|
|
Announcement = "Port forwarding is working for PIA v4 servers"
|
|
// AnnouncementExpiration is the expiration date of the announcement in format yyyy-mm-dd
|
|
AnnouncementExpiration = "2020-11-15"
|
|
)
|
|
|
|
const (
|
|
// IssueLink is the link for users to use to create issues
|
|
IssueLink = "https://github.com/qdm12/gluetun/issues/new"
|
|
)
|