Update VPN client connection flow
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
export const CONNECTIVITY_IP_SOURCES = Object.freeze([
|
||||
{ id: 'cloudflare', label: 'Cloudflare', family: 4, url: 'https://www.cloudflare.com/cdn-cgi/trace' },
|
||||
{ id: 'ipify', label: 'ipify', family: 4, url: 'https://api.ipify.org' },
|
||||
{ id: 'aws', label: 'AWS', family: 4, url: 'https://checkip.amazonaws.com' },
|
||||
{ id: 'icanhazip', label: 'icanhazip', family: 4, url: 'https://icanhazip.com' },
|
||||
{ id: 'ifconfig-me', label: 'ifconfig.me', family: 4, url: 'https://ifconfig.me/ip' },
|
||||
{ id: 'yandex-internet', label: 'Яндекс Интернетометр', family: 4, url: 'https://yandex.ru/internet/' },
|
||||
{ id: 'ipify-v6', label: 'ipify IPv6', family: 6, url: 'https://api6.ipify.org' },
|
||||
]);
|
||||
|
||||
export const CONNECTIVITY_SITES = Object.freeze([
|
||||
{ id: 'google', label: 'Google', url: 'https://www.google.com/generate_204' },
|
||||
{ id: 'youtube', label: 'YouTube', url: 'https://www.youtube.com/generate_204' },
|
||||
{ id: 'instagram', label: 'Instagram', url: 'https://www.instagram.com/' },
|
||||
{ id: 'speedtest', label: 'Speedtest', url: 'https://www.speedtest.net/' },
|
||||
{ id: 'yandex', label: 'Яндекс Интернетометр', url: 'https://yandex.ru/internet/' },
|
||||
{ id: '2ip', label: '2IP', url: 'https://2ip.ru/' },
|
||||
]);
|
||||
|
||||
export const MAX_CUSTOM_DIAGNOSTIC_SERVICES = 5;
|
||||
@@ -1,7 +1,7 @@
|
||||
export const HARBOR_VERSIONS = Object.freeze({
|
||||
macClient: '0.15.1',
|
||||
gatewayClient: '0.16.1',
|
||||
gatewayBackend: '0.16.1',
|
||||
macClient: '0.16.1',
|
||||
gatewayClient: '0.17.1',
|
||||
gatewayBackend: '0.17.1',
|
||||
});
|
||||
|
||||
export function parseVersion(value) {
|
||||
|
||||
Reference in New Issue
Block a user