summaryrefslogtreecommitdiff
path: root/client/Config.h
diff options
context:
space:
mode:
Diffstat (limited to 'client/Config.h')
-rw-r--r--client/Config.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/client/Config.h b/client/Config.h
index 868c859..1c67604 100644
--- a/client/Config.h
+++ b/client/Config.h
@@ -90,7 +90,7 @@ public:
/**
* @brief Get list of static proxy entries
* @param line number of GUI line proxy list associated with
- * @return List of static proxy entries in order as they appear in config file
+ * @return List of static proxy entries sorted by speed in descending order
*/
std::vector<ProxyEntryStatic> GetStaticProxyGuiLine(int line);
@@ -99,6 +99,13 @@ public:
* @return number of static proxy GUI lines or 0 if none
*/
unsigned GetStaticProxyGuiLines();
+
+ /**
+ * Static proxy speed value limit.<br/>
+ * This value is used to determine speed label color.
+ * All speed value below this constant will be red, higher values will be green
+ */
+ const unsigned StaticProxySpeedLow;
protected:
Config();
private: