summaryrefslogtreecommitdiffstats
path: root/deluge/ui/console/utils/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/ui/console/utils/common.py')
-rw-r--r--deluge/ui/console/utils/common.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/deluge/ui/console/utils/common.py b/deluge/ui/console/utils/common.py
new file mode 100644
index 0000000..fdc88c4
--- /dev/null
+++ b/deluge/ui/console/utils/common.py
@@ -0,0 +1,20 @@
+#
+# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
+# the additional special exception to link portions of this program with the OpenSSL library.
+# See LICENSE for more details.
+#
+
+TORRENT_OPTIONS = {
+ 'max_download_speed': float,
+ 'max_upload_speed': float,
+ 'max_connections': int,
+ 'max_upload_slots': int,
+ 'prioritize_first_last': bool,
+ 'is_auto_managed': bool,
+ 'stop_at_ratio': bool,
+ 'stop_ratio': float,
+ 'remove_at_ratio': bool,
+ 'move_completed': bool,
+ 'move_completed_path': str,
+ 'super_seeding': bool,
+}