我使用python bindings来libtorrent。一切正常。
但是有一个问题:下载2个以上相同的种子。
它们在不同时间添加并下载到不同的文件夹中。
但是对于不同的实例torrent_handle
,我收到了相同的实例torrent_info
:
print handle, handle.get_torrent_info() ...
< libtorrent.torrent_handle对象位于0x80425f6e0> < libtorrent.torrent_info对象位于0x802289fa0> < libtorrent.torrent_handle对象位于0x80425f758> < libtorrent.torrent_info对象位于0x802289fa0> < libtorrent.torrent_handle对象位于0x80425f7d0> < libtorrent.torrent_info对象位于0x802289fa0>
如何更正libtorrent下载多个相同的种子?
不是标准情况,而是罕见情况。