added implementation of V2RayConfigurator and V2RayProtocol classes

This commit is contained in:
vladimir.kuznetsov 2023-02-10 20:07:17 +03:00
parent 8032e55d7c
commit 7d51cb7d58
24 changed files with 369 additions and 20 deletions

View file

@ -116,7 +116,7 @@ int ProtocolProps::defaultPort(Proto p)
case Proto::WireGuard : return 51820;
case Proto::Ikev2 : return -1;
case Proto::L2tp : return -1;
case Proto::V2Ray : return -1;
case Proto::V2Ray : return 10086;
case Proto::TorWebSite : return -1;
case Proto::Dns : return 53;
@ -181,7 +181,7 @@ bool ProtocolProps::defaultTransportProtoChangeable(Proto p)
case Proto::Dns : return false;
case Proto::FileShare : return false;
case Proto::Sftp : return false;
default: return false;
default: return false;
}
}