Custom Query (2447 matches)
Results (397 - 399 of 2447)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#2117 | Duplicate | Wrong path separator is sent to unix daemon from windows gui | ||
Description |
Install daemon on unix-based os with slash separator. Connect to daemon from Windows gtkui. Open Add torrent dialog. Paths within torrent are separated with Windows native backslash ("\"). When task is sent to daemon it takes backslashes as part of filename. I made a dirty hack so all native seps are replaced with slash before sending task to deluged. But we cannot know that slash is native for remote daemon, so this is not a good solution. while row != None: torrent_id = self.torrent_liststore.get_value(row, 0) filename = self.torrent_liststore.get_value(row, 2).replace(os.path.sep, '/') #WA This is discussed here http://forum.deluge-torrent.org/viewtopic.php?f=12&t=36329 |
|||
#2121 | Duplicate | Rework Deluge towards static incoming port | ||
Description |
This will sadly require libtorrent 0.16 in order to work (because that release adds port-reusing and forced ports http://code.google.com/p/libtorrent/issues/detail?id=305), but it would be a MAJOR improvement to Deluge, for multiple reasons:
Once Deluge works well with libtorrent 0.16, it really would be worth looking into defaulting to a single, static port, randomly selected on config file generation. Requesting a single port is easy in 0.16; see the libtorrent bug tracker link above. You just pass in two flags to tell it to re-use the port even if it's in TIME_WAIT state (the state just before it is freed by the system) and to disallow the system from choosing another port at random. It'll also require a small check that says "the only port we wanted is in use? okay, don't start the daemon, instead log a fatal error" |
|||
#2137 | Duplicate | Add announce_ip support | ||
Description |
Deluge can't be used as a seeder from behind a NAT firewall, even if the firewall is configured to forward the appropriate ports, because there is no way to announce the true IP to the tracker. The enclosed patch modifies deluge 1.3.5 to add a -T switch (alias --libtorrent) that allows an announce_ip parameter to be passed to libtorrent. It also modifies libtorrent itself to correctly process that parameter. As a pleasant side effect, all other libtorrent options can now be passed through from deluge. |