* Allow opening a torrent without creating any files. Still requires

modification of the client to work.


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@1016 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2007-12-02 15:39:58 +00:00
parent 4704c91a8f
commit 6db7ada26c
+2 -1
View File
@@ -221,7 +221,8 @@ DownloadList::open_throw(Download* download) {
if (download->download()->is_open())
return;
download->download()->open();
// download->download()->open(torrent::Download::open_no_create);
download->download()->open(0);
std::for_each(slot_map_open().begin(), slot_map_open().end(), download_list_call(download));
}