- Fix Proxy type rank in enum (to be consistent with older qBittorrent versions)

- Added Proxy settings to Web UI
- Fix tiny bugs in proxy settings
This commit is contained in:
Christophe Dumez
2009-12-30 15:07:51 +00:00
parent f60ef5dbd5
commit 7ad90b1b80
5 changed files with 183 additions and 8 deletions

View File

@@ -34,7 +34,7 @@
#include "ui_options.h"
#include <libtorrent/ip_filter.hpp>
enum ProxyType {HTTP, SOCKS4, SOCKS5, HTTP_PW, SOCKS5_PW};
enum ProxyType {HTTP=1, SOCKS5=2, HTTP_PW=3, SOCKS5_PW=4, SOCKS4=5};
// actions on double-click on torrents
enum DoubleClickAction {TOGGLE_PAUSE, OPEN_DEST};