proxy is client tunnel

dev
acetone 2025-01-16 04:54:06 -05:00
parent 9d53a6285e
commit 76dc967b52
1 changed files with 6 additions and 0 deletions

View File

@ -299,6 +299,12 @@ bool TunnelConstructor::isClientType(TunnelType type)
case TunnelType::UdpClient: {
return true;
}
case TunnelType::HttpProxy: {
return true;
}
case TunnelType::SocksProxy: {
return true;
}
default : {
return false;
}