0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 04:02:15 +02:00

When PRIVATE_TUNNEL_PROXY is enabled, append PT_PROXY

to the OpenVPNClient::platform() string.
This commit is contained in:
James Yonan 2015-03-08 12:34:50 -07:00
parent 0ce1e9c7ea
commit 8a983e730f

View File

@ -915,7 +915,11 @@ namespace openvpn {
OPENVPN_CLIENT_EXPORT std::string OpenVPNClient::platform()
{
return platform_string();
std::string ret = platform_string();
#ifdef PRIVATE_TUNNEL_PROXY
ret += " PT_PROXY";
#endif
return ret;
}
OPENVPN_CLIENT_EXPORT OpenVPNClient::~OpenVPNClient()