From ddf79fb062746fe579ffa8740dcd688b7934a322 Mon Sep 17 00:00:00 2001 From: Martijn Voncken Date: Sun, 20 Jul 2008 05:51:36 +0000 Subject: [PATCH] add more global-bandwith settings --- deluge/ui/webui/config_tabs_deluge.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/deluge/ui/webui/config_tabs_deluge.py b/deluge/ui/webui/config_tabs_deluge.py index 19988940d..386ad4c69 100644 --- a/deluge/ui/webui/config_tabs_deluge.py +++ b/deluge/ui/webui/config_tabs_deluge.py @@ -104,6 +104,11 @@ class BandwithGlobal(config_forms.CfgForm): max_upload_speed = forms.DelugeFloat(_("Maximum Upload Speed (Kib/s)")) max_upload_slots_global = forms.DelugeInt(_("Maximum Upload Slots")) + max_half_open_connections = forms.DelugeInt(_("Maximum Half-Open Connections")) + max_connections_per_second = forms.DelugeInt(_("Maximum Connection Attempts per Second")) + ignore_limits_on_local_network = forms.CheckBox("Ignore limits on local network") + + config_page.register('bandwidth','global', BandwithGlobal) class BandwithTorrent(config_forms.CfgForm):