diff options
author | Alex Borisov <b0ric.alex@gmail.com> | 2012-02-04 01:44:13 +0200 |
---|---|---|
committer | Alex Borisov <b0ric.alex@gmail.com> | 2012-02-04 01:44:13 +0200 |
commit | d23435630923f2106eb531b9748e7c0b0f890219 (patch) | |
tree | a0bbac813074ce354e1f7d7a087a42e6750e0cec /client/Config.cpp | |
parent | 97dbcdd63862d8daff8dda5420d41500d0bf3df3 (diff) |
Add 2 new config variables
Diffstat (limited to 'client/Config.cpp')
-rw-r--r-- | client/Config.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/client/Config.cpp b/client/Config.cpp index 9a32603..a7d6fc7 100644 --- a/client/Config.cpp +++ b/client/Config.cpp @@ -345,6 +345,14 @@ void Config::ParseConfig(string data) IsSpeedVisible = true; } } + else if (key.compare("proxifier_exe") == 0) + { + ProxifierExeFile = value; + } + else if (key.compare("proxifier_profile") == 0) + { + ProxifierConfigFile = value; + } else { Logger::Warn("Unrecognized config option: %s\n", key.c_str()); |