-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsts.go
45 lines (43 loc) · 1.05 KB
/
consts.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package sslproxies
// Country codes
const (
UnitedStates = "US"
Japan = "JP"
Singapore = "SG"
Kazakhstan = "KZ"
India = "IN"
Thailand = "TH"
RussianFederation = "RU"
France = "FR"
Germany = "DE"
Philippines = "PH"
Indonesia = "ID"
Uzbekistan = "UZ"
Iran = "IR"
Brazil = "BR"
Canada = "CA"
Netherlands = "NL"
Korea = "KR"
Ukraine = "UA"
UnitedKingdom = "GB"
Cambodia = "KH"
Colombia = "CO"
Uganda = "UG"
DominicanRepublic = "DO"
Ecuador = "EC"
SierraLeone = "SL"
Nepal = "NP"
Turkey = "TR"
ElSalvador = "SV"
Lithuania = "LT"
Vietnam = "VN"
Honduras = "HN"
Bulgaria = "BG"
)
// Anonymity levels
const (
// Highest anonymity level, almost impossible to find your IP address
Elite = "elite proxy"
// Likely possible to find your real IP address
Anonymous = "anonymous"
)