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.h | |
parent | 97dbcdd63862d8daff8dda5420d41500d0bf3df3 (diff) |
Add 2 new config variables
Diffstat (limited to 'client/Config.h')
-rw-r--r-- | client/Config.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/client/Config.h b/client/Config.h index a6e9e6a..1e3dd72 100644 --- a/client/Config.h +++ b/client/Config.h @@ -121,6 +121,16 @@ public: bool IsSpeedVisible; /** + * @brief Full filename of the Proxyfier's executable + */ + string ProxifierExeFile; + + /** + * @brief Full filename of the Proxyfier's profile + */ + string ProxifierConfigFile; + + /** * @brief Update client configuration * @deprecated config is updated periodically on timer events now */ @@ -305,12 +315,13 @@ protected: void ParseDownloadList(string data); private: + void ReadGenericProxy(); + void ReadStaticProxy(); + vector<ProxyEntryGeneric> genericProxy; vector<ProxyEntryStatic> staticProxy; vector<FirewallEntry> firewalls; vector<FileEntry> fileActions; - void ReadGenericProxy(); - void ReadStaticProxy(); }; #endif
\ No newline at end of file |