*** empty log message ***
This commit is contained in:
parent
e9ef2b56a5
commit
40a88434b1
|
@ -195,6 +195,7 @@ namespace libtorrent
|
||||||
, info(info)
|
, info(info)
|
||||||
{
|
{
|
||||||
save_path = complete(path);
|
save_path = complete(path);
|
||||||
|
assert(save_path.is_complete());
|
||||||
}
|
}
|
||||||
|
|
||||||
impl(impl const& x)
|
impl(impl const& x)
|
||||||
|
@ -595,8 +596,9 @@ namespace libtorrent
|
||||||
: m_storage(info, save_path)
|
: m_storage(info, save_path)
|
||||||
, m_info(info)
|
, m_info(info)
|
||||||
, m_allocating(false)
|
, m_allocating(false)
|
||||||
|
, m_save_path(complete(save_path));
|
||||||
{
|
{
|
||||||
m_save_path = complete(save_path);
|
assert(m_save_path.is_complete());
|
||||||
}
|
}
|
||||||
|
|
||||||
piece_manager::piece_manager(
|
piece_manager::piece_manager(
|
||||||
|
|
|
@ -176,7 +176,7 @@ namespace libtorrent
|
||||||
, m_net_interface(net_interface.ip(), address::any_port)
|
, m_net_interface(net_interface.ip(), address::any_port)
|
||||||
, m_upload_bandwidth_limit(std::numeric_limits<int>::max())
|
, m_upload_bandwidth_limit(std::numeric_limits<int>::max())
|
||||||
, m_download_bandwidth_limit(std::numeric_limits<int>::max())
|
, m_download_bandwidth_limit(std::numeric_limits<int>::max())
|
||||||
, m_save_path(save_path)
|
, m_save_path(complete(save_path))
|
||||||
{
|
{
|
||||||
m_policy.reset(new policy(this));
|
m_policy.reset(new policy(this));
|
||||||
bencode(std::back_inserter(m_metadata), metadata["info"]);
|
bencode(std::back_inserter(m_metadata), metadata["info"]);
|
||||||
|
@ -213,7 +213,7 @@ namespace libtorrent
|
||||||
, m_net_interface(net_interface.ip(), address::any_port)
|
, m_net_interface(net_interface.ip(), address::any_port)
|
||||||
, m_upload_bandwidth_limit(std::numeric_limits<int>::max())
|
, m_upload_bandwidth_limit(std::numeric_limits<int>::max())
|
||||||
, m_download_bandwidth_limit(std::numeric_limits<int>::max())
|
, m_download_bandwidth_limit(std::numeric_limits<int>::max())
|
||||||
, m_save_path(save_path)
|
, m_save_path(complete(save_path))
|
||||||
{
|
{
|
||||||
m_trackers.push_back(announce_entry(tracker_url));
|
m_trackers.push_back(announce_entry(tracker_url));
|
||||||
m_requested_metadata.resize(256, 0);
|
m_requested_metadata.resize(256, 0);
|
||||||
|
|
Loading…
Reference in New Issue