forked from premiere/premiere-libtorrent
merged changes from RC_1_0
This commit is contained in:
parent
465832bf2b
commit
6214aef0c5
|
@ -269,20 +269,26 @@ namespace libtorrent
|
||||||
// of files to be added is known up-front.
|
// of files to be added is known up-front.
|
||||||
void reserve(int num_files);
|
void reserve(int num_files);
|
||||||
|
|
||||||
// Adds a file to the file storage. The ``flags`` argument sets attributes on the file.
|
// Adds a file to the file storage. The ``flags`` argument sets
|
||||||
// The file attributes is an extension and may not work in all bittorrent clients.
|
// attributes on the file. The file attributes is an extension and may
|
||||||
|
// not work in all bittorrent clients.
|
||||||
//
|
//
|
||||||
// For possible file attributes, see file_storage::flags_t.
|
// For possible file attributes, see file_storage::flags_t.
|
||||||
//
|
//
|
||||||
// If more files than one are added, certain restrictions to their paths apply.
|
// If more files than one are added, certain restrictions to their paths
|
||||||
// In a multi-file file storage (torrent), all files must share the same root directory.
|
// apply. In a multi-file file storage (torrent), all files must share
|
||||||
|
// the same root directory.
|
||||||
//
|
//
|
||||||
// That is, the first path element of all files must be the same.
|
// That is, the first path element of all files must be the same.
|
||||||
// This shared path element is also set to the name of the torrent. It
|
// This shared path element is also set to the name of the torrent. It
|
||||||
// can be changed by calling ``set_name``.
|
// can be changed by calling ``set_name``.
|
||||||
//
|
//
|
||||||
// The built in functions to traverse a directory to add files will
|
// The ``filehash`` argument is an optional pointer to a sha-1 hash (20
|
||||||
// make sure this requirement is fulfilled.
|
// bytes) of the file. The hash is not copied into the file_storage
|
||||||
|
// object, but the pointer is expected to point to memory that stays
|
||||||
|
// valid throughout the life time of the file_storage.
|
||||||
|
//
|
||||||
|
// Currently, the ``filehash`` from ``file_entry`` is not used.
|
||||||
void add_file(file_entry const& e, char const* filehash = 0);
|
void add_file(file_entry const& e, char const* filehash = 0);
|
||||||
void add_file(std::string const& p, boost::int64_t size, int flags = 0
|
void add_file(std::string const& p, boost::int64_t size, int flags = 0
|
||||||
, std::time_t mtime = 0, std::string const& s_p = "");
|
, std::time_t mtime = 0, std::string const& s_p = "");
|
||||||
|
@ -423,7 +429,7 @@ namespace libtorrent
|
||||||
// These functions are used to query attributes of files at
|
// These functions are used to query attributes of files at
|
||||||
// a given index.
|
// a given index.
|
||||||
//
|
//
|
||||||
// The ``file_hash()`` is a sha-1 hash of the file, or 0 if none was
|
// The ``hash()`` is a sha-1 hash of the file, or 0 if none was
|
||||||
// provided in the torrent file. This can potentially be used to
|
// provided in the torrent file. This can potentially be used to
|
||||||
// join a bittorrent network with other file sharing networks.
|
// join a bittorrent network with other file sharing networks.
|
||||||
//
|
//
|
||||||
|
|
|
@ -459,6 +459,9 @@ namespace libtorrent
|
||||||
m_total_size += size;
|
m_total_size += size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: 2 it would be nice if file_entry::filehash could be taken into
|
||||||
|
// account as well, and if the file_storage object could actually hold
|
||||||
|
// copies of filehash
|
||||||
void file_storage::add_file(file_entry const& ent, char const* filehash)
|
void file_storage::add_file(file_entry const& ent, char const* filehash)
|
||||||
{
|
{
|
||||||
TORRENT_ASSERT_PRECOND(ent.size >= 0);
|
TORRENT_ASSERT_PRECOND(ent.size >= 0);
|
||||||
|
|
Loading…
Reference in New Issue