Changeset 811
- Timestamp:
- 11/23/06 08:54:49 (5 years ago)
- Location:
- trunk
- Files:
-
- 14 modified
- 4 moved
-
libtorrent/src/data/content.cc (modified) (2 diffs)
-
libtorrent/src/download/download_constructor.cc (modified) (1 diff)
-
libtorrent/src/download/download_main.cc (modified) (1 diff)
-
libtorrent/src/download/download_wrapper.cc (modified) (1 diff)
-
libtorrent/src/torrent/Makefile.am (modified) (2 diffs)
-
libtorrent/src/torrent/data/Makefile.am (modified) (2 diffs)
-
libtorrent/src/torrent/data/file.cc (moved) (moved from trunk/libtorrent/src/torrent/file.cc)
-
libtorrent/src/torrent/data/file.h (moved) (moved from trunk/libtorrent/src/torrent/file.h)
-
libtorrent/src/torrent/data/file_list.cc (moved) (moved from trunk/libtorrent/src/torrent/file_list.cc) (1 diff)
-
libtorrent/src/torrent/data/file_list.h (moved) (moved from trunk/libtorrent/src/torrent/file_list.h)
-
libtorrent/src/torrent/resume.cc (modified) (1 diff)
-
rtorrent/src/core/download.cc (modified) (1 diff)
-
rtorrent/src/display/utils.cc (modified) (1 diff)
-
rtorrent/src/display/window_file_list.cc (modified) (1 diff)
-
rtorrent/src/option_handler_rules.cc (modified) (2 diffs)
-
rtorrent/src/ui/download.cc (modified) (1 diff)
-
rtorrent/src/ui/element_file_list.cc (modified) (1 diff)
-
rtorrent/src/ui/element_file_list.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtorrent/src/data/content.cc
r810 r811 42 42 43 43 #include "torrent/exceptions.h" 44 #include "torrent/file.h" 44 #include "torrent/data/file.h" 45 #include "torrent/data/file_list.h" 46 #include "torrent/data/piece.h" 47 45 48 #include "content.h" 46 #include "data/file_meta.h" 47 #include "data/chunk.h" 48 49 #include "torrent/file_list.h" 50 #include "torrent/data/piece.h" 49 #include "file_meta.h" 50 #include "chunk.h" 51 51 52 52 namespace torrent { … … 63 63 64 64 Content::~Content() { 65 if (!m_fileList->empty()) 66 throw internal_error("Content::~Content() !m_fileList->empty()."); 67 65 m_fileList->clear(); 68 66 delete m_fileList; 69 67 } -
trunk/libtorrent/src/download/download_constructor.cc
r810 r811 45 45 #include "download/download_wrapper.h" 46 46 #include "torrent/exceptions.h" 47 #include "torrent/file_list.h" 47 #include "torrent/object.h" 48 #include "torrent/data/file_list.h" 48 49 #include "tracker/tracker_manager.h" 49 50 50 #include "torrent/object.h"51 51 #include "download_constructor.h" 52 52 -
trunk/libtorrent/src/download/download_main.cc
r810 r811 45 45 #include "tracker/tracker_manager.h" 46 46 #include "torrent/exceptions.h" 47 #include "torrent/ file_list.h"47 #include "torrent/data/file_list.h" 48 48 #include "torrent/peer/peer_info.h" 49 49 -
trunk/libtorrent/src/download/download_wrapper.cc
r810 r811 51 51 #include "protocol/peer_connection_base.h" 52 52 #include "torrent/exceptions.h" 53 #include "torrent/file.h"54 #include "torrent/file_list.h"55 53 #include "torrent/object.h" 54 #include "torrent/data/file.h" 55 #include "torrent/data/file_list.h" 56 56 #include "tracker/tracker_manager.h" 57 57 -
trunk/libtorrent/src/torrent/Makefile.am
r803 r811 20 20 exceptions.cc \ 21 21 exceptions.h \ 22 file.cc \23 file.h \24 file_list.cc \25 file_list.h \26 22 hash_string.h \ 27 23 http.cc \ … … 63 59 exceptions.h \ 64 60 event.h \ 65 file.h \66 file_list.h \67 61 hash_string.h \ 68 62 http.h \ -
trunk/libtorrent/src/torrent/data/Makefile.am
r803 r811 8 8 block_list.h \ 9 9 block_transfer.h \ 10 file.cc \ 11 file.h \ 12 file_list.cc \ 13 file_list.h \ 10 14 piece.h \ 11 15 transfer_list.cc \ … … 19 23 block_list.h \ 20 24 block_transfer.h \ 25 file.h \ 26 file_list.h \ 21 27 piece.h \ 22 28 transfer_list.h -
trunk/libtorrent/src/torrent/data/file_list.cc
r810 r811 52 52 53 53 #include "torrent/exceptions.h" 54 #include "torrent/file.h"55 54 #include "torrent/path.h" 56 55 56 #include "file.h" 57 57 #include "file_list.h" 58 58 #include "manager.h" -
trunk/libtorrent/src/torrent/resume.cc
r810 r811 45 45 #include "peer/peer_list.h" 46 46 47 #include "data/file.h" 48 #include "data/file_list.h" 49 47 50 #include "common.h" 48 51 #include "bitfield.h" 49 52 #include "download.h" 50 #include "file.h"51 #include "file_list.h"52 53 #include "object.h" 53 54 #include "tracker.h" -
trunk/rtorrent/src/core/download.cc
r810 r811 43 43 #include <rak/path.h> 44 44 #include <torrent/exceptions.h> 45 #include <torrent/file_list.h>46 45 #include <torrent/rate.h> 47 46 #include <torrent/torrent.h> 48 47 #include <torrent/tracker.h> 49 48 #include <torrent/tracker_list.h> 49 #include <torrent/data/file_list.h> 50 50 51 51 #include "utils/variable_generic.h" -
trunk/rtorrent/src/display/utils.cc
r810 r811 44 44 #include <torrent/exceptions.h> 45 45 #include <torrent/connection_manager.h> 46 #include <torrent/file_list.h>47 46 #include <torrent/rate.h> 48 47 #include <torrent/tracker.h> 49 48 #include <torrent/tracker_list.h> 49 #include <torrent/data/file_list.h> 50 50 #include <torrent/peer/client_info.h> 51 51 -
trunk/rtorrent/src/display/window_file_list.cc
r810 r811 39 39 #include <stdexcept> 40 40 #include <rak/algorithm.h> 41 #include <torrent/file.h>42 #include <torrent/file_list.h>43 41 #include <torrent/path.h> 42 #include <torrent/data/file.h> 43 #include <torrent/data/file_list.h> 44 44 45 45 #include "core/download.h" -
trunk/rtorrent/src/option_handler_rules.cc
r810 r811 50 50 #include <torrent/connection_manager.h> 51 51 #include <torrent/exceptions.h> 52 #include <torrent/file.h>53 #include <torrent/file_list.h>54 52 #include <torrent/path.h> 55 53 #include <torrent/rate.h> … … 57 55 #include <torrent/tracker.h> 58 56 #include <torrent/tracker_list.h> 57 #include <torrent/data/file.h> 58 #include <torrent/data/file_list.h> 59 59 60 60 #include "core/download.h" -
trunk/rtorrent/src/ui/download.cc
r810 r811 43 43 #include <torrent/chunk_manager.h> 44 44 #include <torrent/connection_manager.h> 45 #include <torrent/file_list.h>46 45 #include <torrent/torrent.h> 47 46 #include <torrent/tracker_list.h> 47 #include <torrent/data/file_list.h> 48 48 49 49 #include "core/download.h" -
trunk/rtorrent/src/ui/element_file_list.cc
r810 r811 38 38 39 39 #include <torrent/exceptions.h> 40 #include <torrent/file_list.h> 40 #include <torrent/data/file.h> 41 #include <torrent/data/file_list.h> 41 42 42 43 #include "display/frame.h" -
trunk/rtorrent/src/ui/element_file_list.h
r751 r811 38 38 #define RTORRENT_UI_ELEMENT_FILE_LIST_H 39 39 40 #include <torrent/ file.h>40 #include <torrent/common.h> 41 41 42 42 #include "core/download.h"
