2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
2006-10-11 22:57:54 +02:00
|
|
|
Copyright (c) 2006, Arvid Norberg, Magnus Jonsson
|
2003-10-23 01:00:57 +02:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-03-17 18:15:16 +01:00
|
|
|
#include "libtorrent/pch.hpp"
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
#include <ctime>
|
|
|
|
#include <algorithm>
|
|
|
|
#include <set>
|
2003-10-25 03:31:06 +02:00
|
|
|
#include <cctype>
|
2003-10-27 16:43:33 +01:00
|
|
|
#include <algorithm>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push, 1)
|
|
|
|
#endif
|
|
|
|
|
2003-12-15 18:46:47 +01:00
|
|
|
#include <boost/limits.hpp>
|
2004-01-17 21:04:19 +01:00
|
|
|
#include <boost/bind.hpp>
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2004-01-25 19:18:36 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2008-09-22 01:19:58 +02:00
|
|
|
#include "libtorrent/extensions/ut_pex.hpp"
|
|
|
|
#include "libtorrent/extensions/ut_metadata.hpp"
|
2008-11-27 21:51:59 +01:00
|
|
|
#include "libtorrent/extensions/lt_trackers.hpp"
|
2008-09-22 01:19:58 +02:00
|
|
|
#include "libtorrent/extensions/smart_ban.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/peer_id.hpp"
|
|
|
|
#include "libtorrent/torrent_info.hpp"
|
2004-01-31 11:46:15 +01:00
|
|
|
#include "libtorrent/tracker_manager.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
#include "libtorrent/bencode.hpp"
|
|
|
|
#include "libtorrent/hasher.hpp"
|
|
|
|
#include "libtorrent/entry.hpp"
|
|
|
|
#include "libtorrent/session.hpp"
|
2003-12-16 14:33:29 +01:00
|
|
|
#include "libtorrent/fingerprint.hpp"
|
2004-01-07 01:48:02 +01:00
|
|
|
#include "libtorrent/entry.hpp"
|
2004-01-18 20:12:18 +01:00
|
|
|
#include "libtorrent/alert_types.hpp"
|
2004-01-25 19:18:36 +01:00
|
|
|
#include "libtorrent/invariant_check.hpp"
|
2004-01-26 02:08:59 +01:00
|
|
|
#include "libtorrent/file.hpp"
|
2006-04-25 23:04:48 +02:00
|
|
|
#include "libtorrent/bt_peer_connection.hpp"
|
2005-07-06 02:58:23 +02:00
|
|
|
#include "libtorrent/ip_filter.hpp"
|
2006-04-25 23:04:48 +02:00
|
|
|
#include "libtorrent/socket.hpp"
|
2006-10-11 16:02:21 +02:00
|
|
|
#include "libtorrent/aux_/session_impl.hpp"
|
2006-08-01 17:27:08 +02:00
|
|
|
#include "libtorrent/kademlia/dht_tracker.hpp"
|
2009-06-13 12:45:07 +02:00
|
|
|
#include "libtorrent/natpmp.hpp"
|
|
|
|
#include "libtorrent/upnp.hpp"
|
2003-10-23 01:00:57 +02:00
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
using boost::shared_ptr;
|
|
|
|
using boost::weak_ptr;
|
|
|
|
using boost::bind;
|
2006-10-11 16:02:21 +02:00
|
|
|
using libtorrent::aux::session_impl;
|
2004-10-14 03:17:04 +02:00
|
|
|
|
2007-12-27 07:37:18 +01:00
|
|
|
#ifdef TORRENT_MEMDEBUG
|
|
|
|
void start_malloc_debug();
|
|
|
|
void stop_malloc_debug();
|
|
|
|
#endif
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
2008-11-23 16:44:11 +01:00
|
|
|
TORRENT_EXPORT void TORRENT_LINK_TEST_NAME() {}
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
// this function returns a session_settings object
|
|
|
|
// which will optimize libtorrent for minimum memory
|
|
|
|
// usage, with no consideration of performance.
|
|
|
|
session_settings min_memory_usage()
|
|
|
|
{
|
|
|
|
session_settings set;
|
|
|
|
// setting this to a low limit, means more
|
|
|
|
// peers are more likely to request from the
|
|
|
|
// same piece. Which means fewer partial
|
|
|
|
// pieces and fewer entries in the partial
|
|
|
|
// piece list
|
|
|
|
set.whole_pieces_threshold = 2;
|
|
|
|
set.use_parole_mode = false;
|
|
|
|
set.prioritize_partial_pieces = true;
|
|
|
|
|
2009-05-22 08:32:39 +02:00
|
|
|
// be extra nice on the hard drive when running
|
|
|
|
// on embedded devices. This might slow down
|
|
|
|
// torrent checking
|
|
|
|
set.file_checks_delay_per_block = 15;
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
// only have 4 files open at a time
|
|
|
|
set.file_pool_size = 4;
|
|
|
|
|
|
|
|
// we want to keep the peer list as small as possible
|
|
|
|
set.allow_multiple_connections_per_ip = false;
|
|
|
|
set.max_failcount = 2;
|
|
|
|
set.inactivity_timeout = 120;
|
|
|
|
|
|
|
|
// whenever a peer has downloaded one block, write
|
|
|
|
// it to disk, and don't read anything from the
|
|
|
|
// socket until the disk write is complete
|
2009-06-10 10:30:55 +02:00
|
|
|
set.max_queued_disk_bytes = 1;
|
2009-05-12 20:05:04 +02:00
|
|
|
|
|
|
|
// don't keep track of all upnp devices, keep
|
|
|
|
// the device list small
|
|
|
|
set.upnp_ignore_nonrouters = true;
|
|
|
|
|
|
|
|
// never keep more than one 16kB block in
|
|
|
|
// the send buffer
|
|
|
|
set.send_buffer_watermark = 9;
|
|
|
|
|
|
|
|
// don't use any disk cache
|
|
|
|
set.cache_size = 0;
|
2009-05-12 20:52:05 +02:00
|
|
|
set.cache_buffer_chunk_size = 1;
|
2009-05-12 20:05:04 +02:00
|
|
|
set.use_read_cache = false;
|
|
|
|
|
|
|
|
set.close_redundant_connections = true;
|
|
|
|
|
|
|
|
set.max_peerlist_size = 500;
|
2009-05-13 03:34:10 +02:00
|
|
|
set.max_paused_peerlist_size = 50;
|
2009-05-12 20:05:04 +02:00
|
|
|
|
|
|
|
// udp trackers are cheaper to talk to
|
|
|
|
set.prefer_udp_trackers = true;
|
|
|
|
|
|
|
|
set.max_rejects = 10;
|
|
|
|
|
|
|
|
set.recv_socket_buffer_size = 16 * 1024;
|
|
|
|
set.send_socket_buffer_size = 16 * 1024;
|
|
|
|
|
|
|
|
// use less memory when checking pieces
|
|
|
|
set.optimize_hashing_for_speed = false;
|
|
|
|
|
|
|
|
// use less memory when reading and writing
|
|
|
|
// whole pieces
|
|
|
|
set.coalesce_reads = false;
|
|
|
|
set.coalesce_writes = false;
|
|
|
|
|
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
|
|
|
session_settings high_performance_seed()
|
|
|
|
{
|
|
|
|
session_settings set;
|
|
|
|
|
2009-05-27 08:37:45 +02:00
|
|
|
// allow 500 files open at a time
|
|
|
|
set.file_pool_size = 500;
|
2009-05-12 20:05:04 +02:00
|
|
|
|
|
|
|
// as a seed box, we must accept multiple peers behind
|
|
|
|
// the same NAT
|
|
|
|
set.allow_multiple_connections_per_ip = true;
|
|
|
|
|
2010-01-15 17:45:42 +01:00
|
|
|
// use 1 GB of cache
|
|
|
|
set.cache_size = 32768 * 2;
|
2009-05-12 20:05:04 +02:00
|
|
|
set.use_read_cache = true;
|
2009-07-28 08:29:13 +02:00
|
|
|
set.cache_buffer_chunk_size = 128;
|
2009-08-02 11:32:25 +02:00
|
|
|
set.read_cache_line_size = 512;
|
|
|
|
set.write_cache_line_size = 512;
|
2010-01-23 04:02:32 +01:00
|
|
|
set.low_prio_disk = false;
|
2009-05-27 08:37:45 +02:00
|
|
|
// one hour expiration
|
|
|
|
set.cache_expiry = 60 * 60;
|
2009-05-12 20:05:04 +02:00
|
|
|
|
2010-01-15 17:45:42 +01:00
|
|
|
// flush write cache based on largest contiguous block
|
|
|
|
set.disk_cache_algorithm = session_settings::largest_contiguous;
|
|
|
|
|
|
|
|
// explicitly cache rare pieces
|
|
|
|
set.explicit_read_cache = true;
|
|
|
|
// prevent fast pieces to interfere with suggested pieces
|
|
|
|
// since we unchoke everyone, we don't need fast pieces anyway
|
|
|
|
set.allowed_fast_set_size = 0;
|
|
|
|
// suggest pieces in the read cache for higher cache hit rate
|
|
|
|
set.suggest_mode = session_settings::suggest_read_cache;
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
set.close_redundant_connections = true;
|
|
|
|
|
|
|
|
set.max_rejects = 10;
|
|
|
|
|
|
|
|
set.optimize_hashing_for_speed = true;
|
|
|
|
|
2009-05-27 08:37:45 +02:00
|
|
|
// don't let connections linger for too long
|
|
|
|
set.request_timeout = 10;
|
|
|
|
set.peer_timeout = 20;
|
|
|
|
set.inactivity_timeout = 20;
|
|
|
|
|
|
|
|
set.active_limit = 2000;
|
|
|
|
set.active_seeds = 2000;
|
|
|
|
|
|
|
|
set.auto_upload_slots = false;
|
|
|
|
|
2009-08-17 19:33:57 +02:00
|
|
|
// in order to be able to deliver very high
|
|
|
|
// upload rates, this should be able to cover
|
|
|
|
// the bandwidth delay product. Assuming an RTT
|
|
|
|
// of 500 ms, and a send rate of 10 MB/s, the upper
|
|
|
|
// limit should be 5 MB
|
|
|
|
set.send_buffer_watermark = 5 * 1024 * 1024;
|
|
|
|
|
2009-05-27 08:37:45 +02:00
|
|
|
// don't retry peers if they fail once. Let them
|
|
|
|
// connect to us if they want to
|
|
|
|
set.max_failcount = 1;
|
|
|
|
|
2009-05-12 20:05:04 +02:00
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
session::session(
|
|
|
|
fingerprint const& id
|
|
|
|
, std::pair<int, int> listen_port_range
|
2007-11-16 22:21:28 +01:00
|
|
|
, char const* listen_interface
|
2008-09-22 01:19:58 +02:00
|
|
|
, int flags
|
2008-11-16 03:09:53 +01:00
|
|
|
, int alert_mask
|
2008-02-17 23:51:03 +01:00
|
|
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string logpath
|
2007-11-16 22:21:28 +01:00
|
|
|
#endif
|
|
|
|
)
|
|
|
|
: m_impl(new session_impl(listen_port_range, id, listen_interface
|
2008-02-17 23:51:03 +01:00
|
|
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
2008-11-23 16:44:11 +01:00
|
|
|
, logpath
|
2007-11-16 22:21:28 +01:00
|
|
|
#endif
|
2008-09-22 01:19:58 +02:00
|
|
|
))
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2007-12-27 07:37:18 +01:00
|
|
|
#ifdef TORRENT_MEMDEBUG
|
|
|
|
start_malloc_debug();
|
|
|
|
#endif
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(listen_port_range.first > 0);
|
|
|
|
TORRENT_ASSERT(listen_port_range.first < listen_port_range.second);
|
2008-11-16 03:09:53 +01:00
|
|
|
set_alert_mask(alert_mask);
|
2008-09-22 01:19:58 +02:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
|
|
|
if (flags & add_default_plugins)
|
|
|
|
{
|
|
|
|
add_extension(create_ut_pex_plugin);
|
|
|
|
add_extension(create_ut_metadata_plugin);
|
2008-11-27 21:51:59 +01:00
|
|
|
add_extension(create_lt_trackers_plugin);
|
2008-09-22 01:19:58 +02:00
|
|
|
add_extension(create_smart_ban_plugin);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (flags & start_default_features)
|
|
|
|
{
|
|
|
|
start_upnp();
|
2008-10-24 10:11:17 +02:00
|
|
|
start_natpmp();
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
start_dht();
|
|
|
|
#endif
|
|
|
|
start_lsd();
|
2008-09-22 01:19:58 +02:00
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
2007-11-16 22:21:28 +01:00
|
|
|
session::session(fingerprint const& id
|
2008-09-22 01:19:58 +02:00
|
|
|
, int flags
|
2008-11-16 03:09:53 +01:00
|
|
|
, int alert_mask
|
2008-02-17 23:51:03 +01:00
|
|
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string logpath
|
2007-11-16 22:21:28 +01:00
|
|
|
#endif
|
|
|
|
)
|
2008-02-17 23:51:03 +01:00
|
|
|
#if defined TORRENT_VERBOSE_LOGGING || defined TORRENT_LOGGING || defined TORRENT_ERROR_LOGGING
|
2007-11-16 22:21:28 +01:00
|
|
|
: m_impl(new session_impl(std::make_pair(0, 0), id, "0.0.0.0", logpath))
|
|
|
|
#else
|
|
|
|
: m_impl(new session_impl(std::make_pair(0, 0), id, "0.0.0.0"))
|
|
|
|
#endif
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2007-12-27 07:37:18 +01:00
|
|
|
#ifdef TORRENT_MEMDEBUG
|
|
|
|
start_malloc_debug();
|
2006-10-11 16:02:21 +02:00
|
|
|
#endif
|
2008-11-16 03:09:53 +01:00
|
|
|
set_alert_mask(alert_mask);
|
2008-09-22 01:19:58 +02:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
|
|
|
if (flags & add_default_plugins)
|
|
|
|
{
|
|
|
|
add_extension(create_ut_pex_plugin);
|
|
|
|
add_extension(create_ut_metadata_plugin);
|
2008-11-27 21:51:59 +01:00
|
|
|
add_extension(create_lt_trackers_plugin);
|
2008-09-22 01:19:58 +02:00
|
|
|
add_extension(create_smart_ban_plugin);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (flags & start_default_features)
|
|
|
|
{
|
|
|
|
start_upnp();
|
|
|
|
start_natpmp();
|
2008-10-24 10:11:17 +02:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
start_dht();
|
|
|
|
#endif
|
|
|
|
start_lsd();
|
2008-09-22 01:19:58 +02:00
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
session::~session()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-12-27 07:37:18 +01:00
|
|
|
#ifdef TORRENT_MEMDEBUG
|
|
|
|
stop_malloc_debug();
|
|
|
|
#endif
|
2007-10-05 02:30:00 +02:00
|
|
|
TORRENT_ASSERT(m_impl);
|
2006-10-11 16:02:21 +02:00
|
|
|
// if there is at least one destruction-proxy
|
|
|
|
// abort the session and let the destructor
|
|
|
|
// of the proxy to syncronize
|
|
|
|
if (!m_impl.unique())
|
|
|
|
m_impl->abort();
|
|
|
|
}
|
|
|
|
|
2009-12-03 06:11:57 +01:00
|
|
|
void session::save_state(entry& e) const
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
|
|
|
m_impl->save_state(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::load_state(lazy_entry const& e)
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
|
|
|
m_impl->load_state(e);
|
|
|
|
}
|
|
|
|
|
2008-09-22 01:19:58 +02:00
|
|
|
#ifndef TORRENT_DISABLE_EXTENSIONS
|
2007-09-14 02:11:33 +02:00
|
|
|
void session::add_extension(boost::function<boost::shared_ptr<torrent_plugin>(torrent*, void*)> ext)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-11-14 01:08:16 +01:00
|
|
|
m_impl->add_extension(ext);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
2008-09-22 01:19:58 +02:00
|
|
|
#endif
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2008-04-05 06:53:22 +02:00
|
|
|
#ifndef TORRENT_DISABLE_GEO_IP
|
|
|
|
bool session::load_asnum_db(char const* file)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-04-05 06:53:22 +02:00
|
|
|
return m_impl->load_asnum_db(file);
|
|
|
|
}
|
2008-04-11 10:46:43 +02:00
|
|
|
|
|
|
|
bool session::load_country_db(char const* file)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-04-11 10:46:43 +02:00
|
|
|
return m_impl->load_country_db(file);
|
|
|
|
}
|
2008-04-22 02:05:23 +02:00
|
|
|
|
|
|
|
int session::as_for_ip(address const& addr)
|
|
|
|
{
|
2009-10-22 20:47:40 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-04-22 02:05:23 +02:00
|
|
|
return m_impl->as_for_ip(addr);
|
|
|
|
}
|
|
|
|
|
2009-10-29 19:12:43 +01:00
|
|
|
#if TORRENT_USE_WSTRING
|
2009-03-31 10:12:35 +02:00
|
|
|
bool session::load_asnum_db(wchar_t const* file)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-03-31 10:12:35 +02:00
|
|
|
return m_impl->load_asnum_db(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool session::load_country_db(wchar_t const* file)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-03-31 10:12:35 +02:00
|
|
|
return m_impl->load_country_db(file);
|
|
|
|
}
|
2009-10-29 19:12:43 +01:00
|
|
|
#endif // TORRENT_USE_WSTRING
|
|
|
|
#endif // TORRENT_DISABLE_GEO_IP
|
2008-04-05 06:53:22 +02:00
|
|
|
|
|
|
|
void session::load_state(entry const& ses_state)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-04-05 06:53:22 +02:00
|
|
|
m_impl->load_state(ses_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry session::state() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-04-05 06:53:22 +02:00
|
|
|
return m_impl->state();
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_ip_filter(ip_filter const& f)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_ip_filter(f);
|
|
|
|
}
|
2009-07-21 03:52:37 +02:00
|
|
|
|
|
|
|
ip_filter const& session::get_ip_filter() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-07-21 06:42:19 +02:00
|
|
|
return m_impl->get_ip_filter();
|
2009-07-21 03:52:37 +02:00
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2007-06-01 03:05:57 +02:00
|
|
|
void session::set_port_filter(port_filter const& f)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-06-01 03:05:57 +02:00
|
|
|
m_impl->set_port_filter(f);
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_peer_id(peer_id const& id)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_peer_id(id);
|
|
|
|
}
|
2007-06-09 01:02:31 +02:00
|
|
|
|
|
|
|
peer_id session::id() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-06-09 01:02:31 +02:00
|
|
|
return m_impl->get_peer_id();
|
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2009-03-17 10:34:44 +01:00
|
|
|
io_service& session::get_io_service()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-03-17 10:34:44 +01:00
|
|
|
return m_impl->m_io_service;
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_key(int key)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_key(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<torrent_handle> session::get_torrents() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
return m_impl->get_torrents();
|
|
|
|
}
|
2006-11-14 01:08:16 +01:00
|
|
|
|
|
|
|
torrent_handle session::find_torrent(sha1_hash const& info_hash) const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-11-14 01:08:16 +01:00
|
|
|
return m_impl->find_torrent_handle(info_hash);
|
|
|
|
}
|
|
|
|
|
2009-02-23 02:21:19 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2008-04-24 05:28:48 +02:00
|
|
|
torrent_handle session::add_torrent(add_torrent_params const& params)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-05-23 23:36:09 +02:00
|
|
|
|
2009-02-23 02:21:19 +01:00
|
|
|
error_code ec;
|
|
|
|
torrent_handle ret = m_impl->add_torrent(params, ec);
|
|
|
|
if (ec) throw libtorrent_exception(ec);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
torrent_handle session::add_torrent(add_torrent_params const& params, error_code& ec)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-02-23 02:21:19 +01:00
|
|
|
return m_impl->add_torrent(params, ec);
|
2008-04-24 05:28:48 +02:00
|
|
|
}
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2009-02-26 08:09:56 +01:00
|
|
|
#ifndef BOOST_NO_EXCEPTIONS
|
2008-08-03 17:14:08 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2006-10-11 16:02:21 +02:00
|
|
|
// if the torrent already exists, this will throw duplicate_torrent
|
|
|
|
torrent_handle session::add_torrent(
|
|
|
|
torrent_info const& ti
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string const& save_path
|
2006-10-11 16:02:21 +02:00
|
|
|
, entry const& resume_data
|
2007-10-08 22:01:36 +02:00
|
|
|
, storage_mode_t storage_mode
|
2007-08-22 07:31:42 +02:00
|
|
|
, bool paused
|
2007-03-16 06:29:23 +01:00
|
|
|
, storage_constructor_type sc)
|
2007-09-01 05:00:31 +02:00
|
|
|
{
|
|
|
|
boost::intrusive_ptr<torrent_info> tip(new torrent_info(ti));
|
2008-04-24 05:28:48 +02:00
|
|
|
add_torrent_params p(sc);
|
|
|
|
p.ti = tip;
|
|
|
|
p.save_path = save_path;
|
2008-07-01 01:14:31 +02:00
|
|
|
std::vector<char> buf;
|
|
|
|
if (resume_data.type() != entry::undefined_t)
|
|
|
|
{
|
|
|
|
bencode(std::back_inserter(buf), resume_data);
|
|
|
|
p.resume_data = &buf;
|
|
|
|
}
|
2008-04-24 05:28:48 +02:00
|
|
|
p.storage_mode = storage_mode;
|
|
|
|
p.paused = paused;
|
2009-02-23 02:21:19 +01:00
|
|
|
return add_torrent(p);
|
2007-09-01 05:00:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
torrent_handle session::add_torrent(
|
|
|
|
boost::intrusive_ptr<torrent_info> ti
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string const& save_path
|
2007-09-01 05:00:31 +02:00
|
|
|
, entry const& resume_data
|
2007-10-08 22:01:36 +02:00
|
|
|
, storage_mode_t storage_mode
|
2007-09-01 05:00:31 +02:00
|
|
|
, bool paused
|
2007-09-14 02:11:33 +02:00
|
|
|
, storage_constructor_type sc
|
|
|
|
, void* userdata)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2008-04-24 05:28:48 +02:00
|
|
|
add_torrent_params p(sc);
|
|
|
|
p.ti = ti;
|
|
|
|
p.save_path = save_path;
|
2008-07-01 01:14:31 +02:00
|
|
|
std::vector<char> buf;
|
|
|
|
if (resume_data.type() != entry::undefined_t)
|
|
|
|
{
|
|
|
|
bencode(std::back_inserter(buf), resume_data);
|
|
|
|
p.resume_data = &buf;
|
|
|
|
}
|
2008-04-24 05:28:48 +02:00
|
|
|
p.storage_mode = storage_mode;
|
|
|
|
p.paused = paused;
|
|
|
|
p.userdata = userdata;
|
2009-02-23 02:21:19 +01:00
|
|
|
return add_torrent(p);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
torrent_handle session::add_torrent(
|
|
|
|
char const* tracker_url
|
|
|
|
, sha1_hash const& info_hash
|
2006-11-14 01:08:16 +01:00
|
|
|
, char const* name
|
2009-10-26 02:29:39 +01:00
|
|
|
, std::string const& save_path
|
2006-10-11 16:02:21 +02:00
|
|
|
, entry const& e
|
2007-10-08 22:01:36 +02:00
|
|
|
, storage_mode_t storage_mode
|
2007-08-22 07:31:42 +02:00
|
|
|
, bool paused
|
2007-09-14 02:11:33 +02:00
|
|
|
, storage_constructor_type sc
|
|
|
|
, void* userdata)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2008-04-24 05:28:48 +02:00
|
|
|
add_torrent_params p(sc);
|
|
|
|
p.tracker_url = tracker_url;
|
|
|
|
p.info_hash = info_hash;
|
|
|
|
p.save_path = save_path;
|
|
|
|
p.paused = paused;
|
|
|
|
p.userdata = userdata;
|
2009-02-23 02:21:19 +01:00
|
|
|
return add_torrent(p);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
2009-06-13 06:09:54 +02:00
|
|
|
#endif // TORRENT_NO_DEPRECATE
|
|
|
|
#endif // BOOST_NO_EXCEPTIONS
|
2006-10-11 16:02:21 +02:00
|
|
|
|
2007-10-13 05:33:33 +02:00
|
|
|
void session::remove_torrent(const torrent_handle& h, int options)
|
2006-10-11 16:02:21 +02:00
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-10-13 05:33:33 +02:00
|
|
|
m_impl->remove_torrent(h, options);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool session::listen_on(
|
|
|
|
std::pair<int, int> const& port_range
|
|
|
|
, const char* net_interface)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
return m_impl->listen_on(port_range, net_interface);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned short session::listen_port() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
return m_impl->listen_port();
|
|
|
|
}
|
|
|
|
|
|
|
|
session_status session::status() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
return m_impl->status();
|
|
|
|
}
|
|
|
|
|
2009-05-23 23:36:09 +02:00
|
|
|
void session::pause()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-05-23 23:36:09 +02:00
|
|
|
m_impl->pause();
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::resume()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-05-23 23:36:09 +02:00
|
|
|
m_impl->resume();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool session::is_paused() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-05-23 23:36:09 +02:00
|
|
|
return m_impl->is_paused();
|
|
|
|
}
|
2008-06-29 21:08:30 +02:00
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
void session::get_cache_info(sha1_hash const& ih
|
|
|
|
, std::vector<cached_piece_info>& ret) const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-02-08 11:22:05 +01:00
|
|
|
m_impl->m_disk_thread.get_cache_info(ih, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_status session::get_cache_status() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-02-08 11:22:05 +01:00
|
|
|
return m_impl->m_disk_thread.status();
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
|
|
|
|
void session::start_dht(entry const& startup_state)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->start_dht(startup_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::stop_dht()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->stop_dht();
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_dht_settings(dht_settings const& settings)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_dht_settings(settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
entry session::dht_state() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-05-23 23:36:09 +02:00
|
|
|
return m_impl->dht_state(l);
|
2006-10-11 16:02:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::add_dht_node(std::pair<std::string, int> const& node)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->add_dht_node(node);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::add_dht_router(std::pair<std::string, int> const& node)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->add_dht_router(node);
|
|
|
|
}
|
|
|
|
|
2009-10-24 23:55:16 +02:00
|
|
|
bool session::is_dht_running() const
|
|
|
|
{
|
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
|
|
|
return m_impl->m_dht;
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
#endif
|
|
|
|
|
2007-06-06 02:41:20 +02:00
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
void session::set_pe_settings(pe_settings const& settings)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-06-06 02:41:20 +02:00
|
|
|
m_impl->set_pe_settings(settings);
|
|
|
|
}
|
|
|
|
|
|
|
|
pe_settings const& session::get_pe_settings() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-06-06 02:41:20 +02:00
|
|
|
return m_impl->get_pe_settings();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
bool session::is_listening() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
return m_impl->is_listening();
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_settings(session_settings const& s)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_settings(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
session_settings const& session::settings()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
return m_impl->settings();
|
|
|
|
}
|
|
|
|
|
2007-04-25 20:26:35 +02:00
|
|
|
void session::set_peer_proxy(proxy_settings const& s)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-04-25 20:26:35 +02:00
|
|
|
m_impl->set_peer_proxy(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_web_seed_proxy(proxy_settings const& s)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-04-25 20:26:35 +02:00
|
|
|
m_impl->set_web_seed_proxy(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_tracker_proxy(proxy_settings const& s)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-04-25 20:26:35 +02:00
|
|
|
m_impl->set_tracker_proxy(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy_settings const& session::peer_proxy() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-04-25 20:26:35 +02:00
|
|
|
return m_impl->peer_proxy();
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy_settings const& session::web_seed_proxy() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-04-25 20:26:35 +02:00
|
|
|
return m_impl->web_seed_proxy();
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy_settings const& session::tracker_proxy() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-04-25 20:26:35 +02:00
|
|
|
return m_impl->tracker_proxy();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
void session::set_dht_proxy(proxy_settings const& s)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-04-25 20:26:35 +02:00
|
|
|
m_impl->set_dht_proxy(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy_settings const& session::dht_proxy() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-04-25 20:26:35 +02:00
|
|
|
return m_impl->dht_proxy();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-08-20 05:19:12 +02:00
|
|
|
#if TORRENT_USE_I2P
|
|
|
|
void session::set_i2p_proxy(proxy_settings const& s)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-08-20 05:19:12 +02:00
|
|
|
m_impl->set_i2p_proxy(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
proxy_settings const& session::i2p_proxy() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-08-20 05:19:12 +02:00
|
|
|
return m_impl->i2p_proxy();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-04-07 17:55:05 +02:00
|
|
|
int session::max_uploads() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-04-07 17:55:05 +02:00
|
|
|
return m_impl->max_uploads();
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_max_uploads(int limit)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_max_uploads(limit);
|
|
|
|
}
|
|
|
|
|
2008-11-08 08:40:55 +01:00
|
|
|
int session::max_connections() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-11-08 08:40:55 +01:00
|
|
|
return m_impl->max_connections();
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_max_connections(int limit)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_max_connections(limit);
|
|
|
|
}
|
|
|
|
|
2007-09-10 03:57:40 +02:00
|
|
|
int session::max_half_open_connections() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-09-10 03:57:40 +02:00
|
|
|
return m_impl->max_half_open_connections();
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_max_half_open_connections(int limit)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_max_half_open_connections(limit);
|
|
|
|
}
|
|
|
|
|
2009-05-14 19:21:19 +02:00
|
|
|
int session::local_upload_rate_limit() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-05-14 19:21:19 +02:00
|
|
|
return m_impl->local_upload_rate_limit();
|
|
|
|
}
|
|
|
|
|
|
|
|
int session::local_download_rate_limit() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-05-14 19:21:19 +02:00
|
|
|
return m_impl->local_download_rate_limit();
|
|
|
|
}
|
|
|
|
|
2007-01-02 00:51:24 +01:00
|
|
|
int session::upload_rate_limit() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-01-02 00:51:24 +01:00
|
|
|
return m_impl->upload_rate_limit();
|
|
|
|
}
|
|
|
|
|
|
|
|
int session::download_rate_limit() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-01-02 00:51:24 +01:00
|
|
|
return m_impl->download_rate_limit();
|
|
|
|
}
|
|
|
|
|
2009-05-14 19:21:19 +02:00
|
|
|
void session::set_local_upload_rate_limit(int bytes_per_second)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-05-14 19:21:19 +02:00
|
|
|
m_impl->set_local_upload_rate_limit(bytes_per_second);
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_local_download_rate_limit(int bytes_per_second)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-05-14 19:21:19 +02:00
|
|
|
m_impl->set_local_download_rate_limit(bytes_per_second);
|
|
|
|
}
|
|
|
|
|
2006-10-11 16:02:21 +02:00
|
|
|
void session::set_upload_rate_limit(int bytes_per_second)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_upload_rate_limit(bytes_per_second);
|
2004-03-28 19:45:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::set_download_rate_limit(int bytes_per_second)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
m_impl->set_download_rate_limit(bytes_per_second);
|
2003-11-09 19:17:09 +01:00
|
|
|
}
|
|
|
|
|
2007-01-01 22:04:30 +01:00
|
|
|
int session::num_uploads() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-01-01 22:04:30 +01:00
|
|
|
return m_impl->num_uploads();
|
|
|
|
}
|
|
|
|
|
|
|
|
int session::num_connections() const
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-01-01 22:04:30 +01:00
|
|
|
return m_impl->num_connections();
|
|
|
|
}
|
|
|
|
|
2003-11-29 17:34:07 +01:00
|
|
|
std::auto_ptr<alert> session::pop_alert()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2006-10-11 16:02:21 +02:00
|
|
|
return m_impl->pop_alert();
|
2003-11-29 17:34:07 +01:00
|
|
|
}
|
|
|
|
|
2008-12-15 08:12:08 +01:00
|
|
|
void session::set_alert_dispatch(boost::function<void(alert const&)> const& fun)
|
|
|
|
{
|
2009-06-13 06:09:54 +02:00
|
|
|
// this function deliberately doesn't acquire the mutex
|
2008-12-15 08:12:08 +01:00
|
|
|
return m_impl->set_alert_dispatch(fun);
|
|
|
|
}
|
|
|
|
|
2007-11-25 09:18:57 +01:00
|
|
|
alert const* session::wait_for_alert(time_duration max_wait)
|
|
|
|
{
|
2009-06-13 06:09:54 +02:00
|
|
|
// this function deliberately doesn't acquire the mutex
|
2007-11-25 09:18:57 +01:00
|
|
|
return m_impl->wait_for_alert(max_wait);
|
|
|
|
}
|
|
|
|
|
2008-07-06 14:22:56 +02:00
|
|
|
void session::set_alert_mask(int m)
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-07-06 14:22:56 +02:00
|
|
|
m_impl->set_alert_mask(m);
|
|
|
|
}
|
|
|
|
|
2008-10-07 09:12:32 +02:00
|
|
|
size_t session::set_alert_queue_size_limit(size_t queue_size_limit_)
|
2008-10-07 07:46:42 +02:00
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-10-07 07:46:42 +02:00
|
|
|
return m_impl->set_alert_queue_size_limit(queue_size_limit_);
|
|
|
|
}
|
|
|
|
|
2008-08-03 17:14:08 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2003-12-22 08:14:35 +01:00
|
|
|
void session::set_severity_level(alert::severity_t s)
|
2003-12-21 18:28:27 +01:00
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2008-07-06 14:22:56 +02:00
|
|
|
int m = 0;
|
|
|
|
switch (s)
|
|
|
|
{
|
|
|
|
case alert::debug: m = alert::all_categories; break;
|
|
|
|
case alert::info: m = alert::all_categories & ~(alert::debug_notification
|
2008-10-22 03:12:14 +02:00
|
|
|
| alert::progress_notification | alert::dht_notification); break;
|
2008-07-06 14:22:56 +02:00
|
|
|
case alert::warning: m = alert::all_categories & ~(alert::debug_notification
|
2008-10-22 03:12:14 +02:00
|
|
|
| alert::status_notification | alert::progress_notification
|
|
|
|
| alert::dht_notification); break;
|
2008-07-06 14:22:56 +02:00
|
|
|
case alert::critical: m = alert::error_notification | alert::storage_notification; break;
|
|
|
|
case alert::fatal: m = alert::error_notification; break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_impl->set_alert_mask(m);
|
2003-12-22 08:14:35 +01:00
|
|
|
}
|
2008-08-03 17:14:08 +02:00
|
|
|
#endif
|
2003-10-25 03:31:06 +02:00
|
|
|
|
2007-05-31 02:21:54 +02:00
|
|
|
void session::start_lsd()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-05-31 02:21:54 +02:00
|
|
|
m_impl->start_lsd();
|
|
|
|
}
|
|
|
|
|
2008-04-07 01:18:35 +02:00
|
|
|
natpmp* session::start_natpmp()
|
2007-05-31 02:21:54 +02:00
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-06-13 12:45:07 +02:00
|
|
|
if (m_impl->m_natpmp) return m_impl->m_natpmp.get();
|
|
|
|
|
|
|
|
// the natpmp constructor may fail and call the callbacks
|
|
|
|
// into the session_impl. We cannot hold the mutex then
|
|
|
|
l.unlock();
|
|
|
|
natpmp* n = new (std::nothrow) natpmp(m_impl->m_io_service
|
|
|
|
, m_impl->m_listen_interface.address()
|
|
|
|
, bind(&session_impl::on_port_mapping
|
|
|
|
, m_impl.get(), _1, _2, _3, 0)
|
|
|
|
, bind(&session_impl::on_port_map_log
|
|
|
|
, m_impl.get(), _1, 0));
|
|
|
|
l.lock();
|
|
|
|
|
|
|
|
if (n == 0) return 0;
|
|
|
|
|
|
|
|
m_impl->start_natpmp(n);
|
|
|
|
return n;
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
2008-04-07 01:18:35 +02:00
|
|
|
upnp* session::start_upnp()
|
2007-05-31 02:21:54 +02:00
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2009-06-13 12:45:07 +02:00
|
|
|
|
|
|
|
if (m_impl->m_upnp) return m_impl->m_upnp.get();
|
|
|
|
|
|
|
|
// the upnp constructor may fail and call the callbacks
|
|
|
|
// into the session_impl. We cannot hold the mutex then
|
|
|
|
l.unlock();
|
|
|
|
upnp* u = new (std::nothrow) upnp(m_impl->m_io_service
|
|
|
|
, m_impl->m_half_open
|
|
|
|
, m_impl->m_listen_interface.address()
|
|
|
|
, m_impl->m_settings.user_agent
|
|
|
|
, bind(&session_impl::on_port_mapping
|
|
|
|
, m_impl.get(), _1, _2, _3, 1)
|
|
|
|
, bind(&session_impl::on_port_map_log
|
2009-08-28 08:48:37 +02:00
|
|
|
, m_impl.get(), _1, 1)
|
2009-06-13 12:45:07 +02:00
|
|
|
, m_impl->m_settings.upnp_ignore_nonrouters);
|
|
|
|
l.lock();
|
|
|
|
|
|
|
|
if (u == 0) return 0;
|
|
|
|
|
|
|
|
m_impl->start_upnp(u);
|
|
|
|
return u;
|
2007-05-31 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void session::stop_lsd()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-05-31 02:21:54 +02:00
|
|
|
m_impl->stop_lsd();
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::stop_natpmp()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-05-31 02:21:54 +02:00
|
|
|
m_impl->stop_natpmp();
|
|
|
|
}
|
|
|
|
|
|
|
|
void session::stop_upnp()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-05-31 02:21:54 +02:00
|
|
|
m_impl->stop_upnp();
|
|
|
|
}
|
|
|
|
|
2007-05-05 02:29:33 +02:00
|
|
|
connection_queue& session::get_connection_queue()
|
|
|
|
{
|
2009-10-20 04:49:56 +02:00
|
|
|
mutex::scoped_lock l(m_impl->m_mutex);
|
2007-05-05 02:29:33 +02:00
|
|
|
return m_impl->m_half_open;
|
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
}
|
2006-10-11 22:57:54 +02:00
|
|
|
|