2006-04-25 23:04:48 +02:00
|
|
|
/*
|
|
|
|
|
2012-10-02 05:16:33 +02:00
|
|
|
Copyright (c) 2003-2012, Arvid Norberg
|
2006-04-25 23:04:48 +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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_SESSION_SETTINGS_HPP_INCLUDED
|
|
|
|
#define TORRENT_SESSION_SETTINGS_HPP_INCLUDED
|
|
|
|
|
2006-05-21 01:24:19 +02:00
|
|
|
#include "libtorrent/version.hpp"
|
2007-04-25 20:26:35 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
2010-07-15 03:14:36 +02:00
|
|
|
#include "libtorrent/version.hpp"
|
2006-05-21 01:24:19 +02:00
|
|
|
|
2010-10-10 04:22:57 +02:00
|
|
|
#include <string>
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
2007-04-25 20:26:35 +02:00
|
|
|
struct TORRENT_EXPORT proxy_settings
|
|
|
|
{
|
2010-08-03 11:08:37 +02:00
|
|
|
proxy_settings() : port(0), type(none)
|
2011-01-24 04:24:28 +01:00
|
|
|
, proxy_hostnames(true)
|
|
|
|
, proxy_peer_connections(true)
|
|
|
|
{}
|
2007-04-25 20:26:35 +02:00
|
|
|
|
|
|
|
std::string hostname;
|
|
|
|
int port;
|
|
|
|
|
|
|
|
std::string username;
|
|
|
|
std::string password;
|
|
|
|
|
|
|
|
enum proxy_type
|
|
|
|
{
|
|
|
|
// a plain tcp socket is used, and
|
|
|
|
// the other settings are ignored.
|
|
|
|
none,
|
2007-05-31 01:35:14 +02:00
|
|
|
// socks4 server, requires username.
|
|
|
|
socks4,
|
2007-04-25 20:26:35 +02:00
|
|
|
// the hostname and port settings are
|
|
|
|
// used to connect to the proxy. No
|
|
|
|
// username or password is sent.
|
|
|
|
socks5,
|
|
|
|
// the hostname and port are used to
|
|
|
|
// connect to the proxy. the username
|
|
|
|
// and password are used to authenticate
|
|
|
|
// with the proxy server.
|
|
|
|
socks5_pw,
|
|
|
|
// the http proxy is only available for
|
|
|
|
// tracker and web seed traffic
|
|
|
|
// assumes anonymous access to proxy
|
|
|
|
http,
|
|
|
|
// http proxy with basic authentication
|
|
|
|
// uses username and password
|
2009-08-20 05:19:12 +02:00
|
|
|
http_pw,
|
|
|
|
// route through a i2p SAM proxy
|
|
|
|
i2p_proxy
|
2007-04-25 20:26:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
proxy_type type;
|
2010-08-03 11:08:37 +02:00
|
|
|
|
|
|
|
// when set to true, hostname are resolved
|
|
|
|
// through the proxy (if supported)
|
|
|
|
bool proxy_hostnames;
|
2011-01-24 04:24:28 +01:00
|
|
|
|
|
|
|
// if true, use this proxy for peers too
|
|
|
|
bool proxy_peer_connections;
|
2007-04-25 20:26:35 +02:00
|
|
|
};
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
struct TORRENT_EXPORT session_settings
|
|
|
|
{
|
2006-09-28 02:49:40 +02:00
|
|
|
session_settings(std::string const& user_agent_ = "libtorrent/"
|
2012-03-19 07:06:52 +01:00
|
|
|
LIBTORRENT_VERSION);
|
|
|
|
~session_settings();
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2010-07-15 03:14:36 +02:00
|
|
|
// libtorrent version. Used for forward binary compatibility
|
|
|
|
int version;
|
|
|
|
|
2006-05-21 01:24:19 +02:00
|
|
|
// this is the user agent that will be sent to the tracker
|
|
|
|
// when doing requests. It is used to identify the client.
|
|
|
|
// It cannot contain \r or \n
|
|
|
|
std::string user_agent;
|
|
|
|
|
|
|
|
// the number of seconds to wait until giving up on a
|
|
|
|
// tracker request if it hasn't finished
|
|
|
|
int tracker_completion_timeout;
|
|
|
|
|
|
|
|
// the number of seconds where no data is received
|
|
|
|
// from the tracker until it should be considered
|
|
|
|
// as timed out
|
|
|
|
int tracker_receive_timeout;
|
|
|
|
|
|
|
|
// the time to wait when sending a stopped message
|
|
|
|
// before considering a tracker to have timed out.
|
|
|
|
// this is usually shorter, to make the client quit
|
|
|
|
// faster
|
|
|
|
int stop_tracker_timeout;
|
|
|
|
|
|
|
|
// if the content-length is greater than this value
|
|
|
|
// the tracker connection will be aborted
|
|
|
|
int tracker_maximum_response_length;
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
// the number of seconds from a request is sent until
|
|
|
|
// it times out if no piece response is returned.
|
|
|
|
int piece_timeout;
|
|
|
|
|
2008-06-29 11:50:42 +02:00
|
|
|
// the number of seconds one block (16kB) is expected
|
|
|
|
// to be received within. If it's not, the block is
|
|
|
|
// requested from a different peer
|
|
|
|
int request_timeout;
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
// the length of the request queue given in the number
|
|
|
|
// of seconds it should take for the other end to send
|
|
|
|
// all the pieces. i.e. the actual number of requests
|
|
|
|
// depends on the download rate and this number.
|
2009-07-19 06:59:27 +02:00
|
|
|
int request_queue_time;
|
2006-04-25 23:04:48 +02:00
|
|
|
|
2006-04-30 02:39:18 +02:00
|
|
|
// the number of outstanding block requests a peer is
|
|
|
|
// allowed to queue up in the client. If a peer sends
|
|
|
|
// more requests than this (before the first one has
|
|
|
|
// been sent) the last request will be dropped.
|
|
|
|
// the higher this is, the faster upload speeds the
|
|
|
|
// client can get to a single peer.
|
2006-05-15 00:30:05 +02:00
|
|
|
int max_allowed_in_request_queue;
|
|
|
|
|
|
|
|
// the maximum number of outstanding requests to
|
|
|
|
// send to a peer. This limit takes precedence over
|
|
|
|
// request_queue_time.
|
|
|
|
int max_out_request_queue;
|
2006-05-21 01:24:19 +02:00
|
|
|
|
2006-05-15 00:30:05 +02:00
|
|
|
// if a whole piece can be downloaded in this number
|
|
|
|
// of seconds, or less, the peer_connection will prefer
|
|
|
|
// to request whole pieces at a time from this peer.
|
|
|
|
// The benefit of this is to better utilize disk caches by
|
|
|
|
// doing localized accesses and also to make it easier
|
|
|
|
// to identify bad peers if a piece fails the hash check.
|
|
|
|
int whole_pieces_threshold;
|
2006-06-29 01:27:44 +02:00
|
|
|
|
|
|
|
// the number of seconds to wait for any activity on
|
|
|
|
// the peer wire before closing the connectiong due
|
|
|
|
// to time out.
|
|
|
|
int peer_timeout;
|
|
|
|
|
|
|
|
// same as peer_timeout, but only applies to url-seeds.
|
|
|
|
// this is usually set lower, because web servers are
|
|
|
|
// expected to be more reliable.
|
|
|
|
int urlseed_timeout;
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
// controls the pipelining size of url-seeds
|
|
|
|
int urlseed_pipeline_size;
|
2007-11-27 04:37:47 +01:00
|
|
|
|
|
|
|
// time to wait until a new retry takes place
|
|
|
|
int urlseed_wait_retry;
|
2006-11-14 16:53:38 +01:00
|
|
|
|
|
|
|
// sets the upper limit on the total number of files this
|
|
|
|
// session will keep open. The reason why files are
|
|
|
|
// left open at all is that some anti virus software
|
|
|
|
// hooks on every file close, and scans the file for
|
|
|
|
// viruses. deferring the closing of the files will
|
|
|
|
// be the difference between a usable system and
|
|
|
|
// a completely hogged down system. Most operating
|
|
|
|
// systems also has a limit on the total number of
|
|
|
|
// file descriptors a process may have open. It is
|
|
|
|
// usually a good idea to find this limit and set the
|
|
|
|
// number of connections and the number of files
|
|
|
|
// limits so their sum is slightly below it.
|
|
|
|
int file_pool_size;
|
|
|
|
|
|
|
|
// false to not allow multiple connections from the same
|
|
|
|
// IP address. true will allow it.
|
|
|
|
bool allow_multiple_connections_per_ip;
|
2007-02-12 10:20:49 +01:00
|
|
|
|
2007-04-14 23:47:07 +02:00
|
|
|
// the number of times we can fail to connect to a peer
|
|
|
|
// before we stop retrying it.
|
|
|
|
int max_failcount;
|
|
|
|
|
|
|
|
// the number of seconds to wait to reconnect to a peer.
|
|
|
|
// this time is multiplied with the failcount.
|
|
|
|
int min_reconnect_time;
|
|
|
|
|
2007-05-05 02:29:33 +02:00
|
|
|
// this is the timeout for a connection attempt. If
|
|
|
|
// the connect does not succeed within this time, the
|
|
|
|
// connection is dropped. The time is specified in seconds.
|
|
|
|
int peer_connect_timeout;
|
|
|
|
|
2007-05-25 19:06:30 +02:00
|
|
|
// if set to true, upload, download and unchoke limits
|
2007-05-25 23:00:35 +02:00
|
|
|
// are ignored for peers on the local network.
|
2007-05-25 19:06:30 +02:00
|
|
|
bool ignore_limits_on_local_network;
|
|
|
|
|
2007-05-25 23:00:35 +02:00
|
|
|
// the number of connection attempts that
|
|
|
|
// are made per second.
|
|
|
|
int connection_speed;
|
|
|
|
|
2007-05-25 23:19:14 +02:00
|
|
|
// if this is set to true, have messages will be sent
|
|
|
|
// to peers that already have the piece. This is
|
|
|
|
// typically not necessary, but it might be necessary
|
|
|
|
// for collecting statistics in some cases. Default is false.
|
|
|
|
bool send_redundant_have;
|
|
|
|
|
2007-05-27 00:27:40 +02:00
|
|
|
// if this is true, outgoing bitfields will never be fuil. If the
|
|
|
|
// client is seed, a few bits will be set to 0, and later filled
|
|
|
|
// in with have messages. This is to prevent certain ISPs
|
|
|
|
// from stopping people from seeding.
|
|
|
|
bool lazy_bitfields;
|
|
|
|
|
2007-05-31 21:57:15 +02:00
|
|
|
// if a peer is uninteresting and uninterested for longer
|
|
|
|
// than this number of seconds, it will be disconnected.
|
|
|
|
// default is 10 minutes
|
|
|
|
int inactivity_timeout;
|
|
|
|
|
2007-06-08 00:37:58 +02:00
|
|
|
// the number of seconds between chokes/unchokes
|
|
|
|
int unchoke_interval;
|
|
|
|
|
2008-10-19 00:35:10 +02:00
|
|
|
// the number of seconds between
|
2007-08-16 14:41:46 +02:00
|
|
|
// optimistic unchokes
|
2008-10-19 00:35:10 +02:00
|
|
|
int optimistic_unchoke_interval;
|
2007-08-16 14:41:46 +02:00
|
|
|
|
2007-06-13 02:20:06 +02:00
|
|
|
// if this is set, this IP will be reported do the
|
|
|
|
// tracker in the ip= parameter.
|
2009-11-23 09:38:50 +01:00
|
|
|
std::string announce_ip;
|
2007-06-13 02:20:06 +02:00
|
|
|
|
2007-07-02 20:44:33 +02:00
|
|
|
// the num want sent to trackers
|
|
|
|
int num_want;
|
|
|
|
|
2007-07-07 03:26:30 +02:00
|
|
|
// while we have fewer pieces than this, pick
|
|
|
|
// random pieces instead of rarest first.
|
|
|
|
int initial_picker_threshold;
|
|
|
|
|
2007-08-14 19:47:48 +02:00
|
|
|
// the number of allowed pieces to send to peers
|
|
|
|
// that supports the fast extensions
|
|
|
|
int allowed_fast_set_size;
|
|
|
|
|
2010-01-15 17:45:42 +01:00
|
|
|
// this determines which pieces will be suggested to peers
|
|
|
|
// suggest read cache will make libtorrent suggest pieces
|
|
|
|
// that are fresh in the disk read cache, to potentially
|
|
|
|
// lower disk access and increase the cache hit ratio
|
2012-12-14 05:38:44 +01:00
|
|
|
enum suggest_mode_t { no_piece_suggestions = 0, suggest_read_cache = 1 };
|
2010-01-15 17:45:42 +01:00
|
|
|
int suggest_mode;
|
|
|
|
|
2007-08-01 07:22:34 +02:00
|
|
|
// the maximum number of bytes a connection may have
|
|
|
|
// pending in the disk write queue before its download
|
|
|
|
// rate is being throttled. This prevents fast downloads
|
|
|
|
// to slow medias to allocate more and more memory
|
2009-05-12 19:57:52 +02:00
|
|
|
// indefinitely. This should be set to at least 16 kB
|
2009-06-10 10:30:55 +02:00
|
|
|
// to not completely disrupt normal downloads. If it's
|
|
|
|
// set to 0, you will be starving the disk thread and
|
|
|
|
// nothing will be written to disk.
|
|
|
|
// this is a per session setting.
|
|
|
|
int max_queued_disk_bytes;
|
2007-08-01 07:22:34 +02:00
|
|
|
|
2011-02-04 04:02:23 +01:00
|
|
|
// this is the low watermark for the disk buffer queue.
|
|
|
|
// whenever the number of queued bytes exceed the
|
|
|
|
// max_queued_disk_bytes, libtorrent will wait for
|
|
|
|
// it to drop below this value before issuing more
|
|
|
|
// reads from the sockets. If set to 0, the
|
|
|
|
// low watermark will be half of the max queued disk bytes
|
|
|
|
int max_queued_disk_bytes_low_watermark;
|
|
|
|
|
2007-10-23 02:19:28 +02:00
|
|
|
// the number of seconds to wait for a handshake
|
|
|
|
// response from a peer. If no response is received
|
|
|
|
// within this time, the peer is disconnected.
|
|
|
|
int handshake_timeout;
|
|
|
|
|
2007-02-12 10:20:49 +01:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
2009-05-12 19:57:52 +02:00
|
|
|
// while this is true, the dht will not be used unless the
|
2007-02-12 10:20:49 +01:00
|
|
|
// tracker is online
|
|
|
|
bool use_dht_as_fallback;
|
|
|
|
#endif
|
2007-11-19 05:58:52 +01:00
|
|
|
|
|
|
|
// if this is true, the piece hashes will be freed, in order
|
|
|
|
// to save memory, once the torrent is seeding. This will
|
|
|
|
// make the get_torrent_info() function to return an incomplete
|
|
|
|
// torrent object that cannot be passed back to add_torrent()
|
|
|
|
bool free_torrent_hashes;
|
2008-01-07 06:48:28 +01:00
|
|
|
|
|
|
|
// when this is true, the upnp port mapper will ignore
|
|
|
|
// any upnp devices that don't have an address that matches
|
|
|
|
// our currently configured router.
|
|
|
|
bool upnp_ignore_nonrouters;
|
2008-01-08 02:16:30 +01:00
|
|
|
|
2012-03-07 03:59:50 +01:00
|
|
|
// This is the minimum send buffer target size (send buffer
|
|
|
|
// includes bytes pending being read from disk). For good
|
|
|
|
// and snappy seeding performance, set this fairly high, to
|
|
|
|
// at least fit a few blocks. This is essentially the initial
|
|
|
|
// window size which will determine how fast we can ramp up
|
|
|
|
// the send rate
|
|
|
|
int send_buffer_low_watermark;
|
|
|
|
|
2008-01-08 02:16:30 +01:00
|
|
|
// if the send buffer has fewer bytes than this, we'll
|
|
|
|
// read another 16kB block onto it. If set too small,
|
|
|
|
// upload rate capacity will suffer. If set too high,
|
|
|
|
// memory will be wasted.
|
|
|
|
// The actual watermark may be lower than this in case
|
|
|
|
// the upload rate is low, this is the upper limit.
|
|
|
|
int send_buffer_watermark;
|
2008-01-13 12:18:18 +01:00
|
|
|
|
2010-03-12 03:36:55 +01:00
|
|
|
// the current upload rate to a peer is multiplied by
|
2011-09-23 23:12:28 +02:00
|
|
|
// this factor to get the send buffer watermark. The
|
|
|
|
// factor is specified as a percentage. i.e. 50 -> 0.5
|
|
|
|
// This product is clamped to the send_buffer_watermark
|
2010-03-12 03:36:55 +01:00
|
|
|
// setting to not exceed the max. For high speed
|
|
|
|
// upload, this should be set to a greater value than
|
2011-09-23 23:12:28 +02:00
|
|
|
// 100. The default is 50.
|
2010-03-12 03:36:55 +01:00
|
|
|
int send_buffer_watermark_factor;
|
|
|
|
|
2010-02-09 04:04:41 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
|
|
|
// deprecated in 0.16
|
2008-01-13 12:18:18 +01:00
|
|
|
bool auto_upload_slots;
|
2009-04-04 09:55:34 +02:00
|
|
|
bool auto_upload_slots_rate_based;
|
2010-02-09 04:04:41 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
enum choking_algorithm_t
|
|
|
|
{
|
|
|
|
fixed_slots_choker,
|
|
|
|
auto_expand_choker,
|
|
|
|
rate_based_choker,
|
|
|
|
bittyrant_choker
|
|
|
|
};
|
2009-04-04 09:55:34 +02:00
|
|
|
|
2010-02-09 04:04:41 +01:00
|
|
|
int choking_algorithm;
|
2010-10-09 23:11:03 +02:00
|
|
|
|
|
|
|
enum seed_choking_algorithm_t
|
|
|
|
{
|
|
|
|
round_robin,
|
2010-10-21 07:53:13 +02:00
|
|
|
fastest_upload,
|
|
|
|
anti_leech
|
2010-10-09 23:11:03 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// the choking algorithm to use for seeding torrents
|
|
|
|
int seed_choking_algorithm;
|
2010-02-09 04:04:41 +01:00
|
|
|
|
2008-07-11 11:23:22 +02:00
|
|
|
// if set to true, peers that participate in a failing
|
|
|
|
// piece is put in parole mode. i.e. They will only
|
|
|
|
// download whole pieces until they either fail or pass.
|
|
|
|
// they are taken out of parole mode as soon as they
|
|
|
|
// participate in a piece that passes.
|
|
|
|
bool use_parole_mode;
|
|
|
|
|
2008-02-08 11:22:05 +01:00
|
|
|
// the disk write cache, specified in 16 KiB blocks.
|
2010-03-10 08:14:10 +01:00
|
|
|
// default is 1024 (= 16 MiB). -1 means automatic, which
|
|
|
|
// adjusts the cache size depending on the amount
|
|
|
|
// of physical RAM in the machine.
|
2008-02-08 11:22:05 +01:00
|
|
|
int cache_size;
|
2008-02-10 01:58:25 +01:00
|
|
|
|
2009-05-12 20:52:05 +02:00
|
|
|
// this is the number of disk buffer blocks (16 kiB)
|
|
|
|
// that should be allocated at a time. It must be
|
|
|
|
// at least 1. Lower number saves memory at the expense
|
|
|
|
// of more heap allocations
|
|
|
|
int cache_buffer_chunk_size;
|
|
|
|
|
2008-02-10 01:58:25 +01:00
|
|
|
// the number of seconds a write cache entry sits
|
|
|
|
// idle in the cache before it's forcefully flushed
|
2011-11-16 10:49:00 +01:00
|
|
|
// to disk. Default is 5 minutes.
|
2008-02-10 01:58:25 +01:00
|
|
|
int cache_expiry;
|
2008-02-28 08:34:07 +01:00
|
|
|
|
2009-01-10 06:46:02 +01:00
|
|
|
// when true, the disk I/O thread uses the disk
|
|
|
|
// cache for caching blocks read from disk too
|
|
|
|
bool use_read_cache;
|
|
|
|
|
2010-01-15 17:45:42 +01:00
|
|
|
// don't implicitly cache pieces in the read cache,
|
|
|
|
// only cache pieces that are explicitly asked to be
|
|
|
|
// cached.
|
|
|
|
bool explicit_read_cache;
|
|
|
|
|
|
|
|
// the number of seconds between refreshes of
|
|
|
|
// explicit caches
|
|
|
|
int explicit_cache_interval;
|
|
|
|
|
2009-01-21 08:31:49 +01:00
|
|
|
enum io_buffer_mode_t
|
|
|
|
{
|
|
|
|
enable_os_cache = 0,
|
|
|
|
disable_os_cache_for_aligned_files = 1,
|
|
|
|
disable_os_cache = 2
|
|
|
|
};
|
2009-06-03 11:02:43 +02:00
|
|
|
int disk_io_write_mode;
|
|
|
|
int disk_io_read_mode;
|
2009-01-21 08:31:49 +01:00
|
|
|
|
|
|
|
bool coalesce_reads;
|
|
|
|
bool coalesce_writes;
|
2009-01-11 03:02:34 +01:00
|
|
|
|
2008-02-28 08:34:07 +01:00
|
|
|
// if != (0, 0), this is the range of ports that
|
|
|
|
// outgoing connections will be bound to. This
|
|
|
|
// is useful for users that have routers that
|
|
|
|
// allow QoS settings based on local port.
|
|
|
|
std::pair<int, int> outgoing_ports;
|
2008-03-12 17:58:23 +01:00
|
|
|
|
|
|
|
// the TOS byte of all peer traffic (including
|
|
|
|
// web seeds) is set to this value. The default
|
|
|
|
// is the QBSS scavenger service
|
|
|
|
// http://qbone.internet2.edu/qbss/
|
|
|
|
// For unmarked packets, set to 0
|
|
|
|
char peer_tos;
|
2008-04-24 05:28:48 +02:00
|
|
|
|
|
|
|
// for auto managed torrents, these are the limits
|
|
|
|
// they are subject to. If there are too many torrents
|
|
|
|
// some of the auto managed ones will be paused until
|
|
|
|
// some slots free up.
|
2010-03-29 02:34:04 +02:00
|
|
|
// active_dht_limit and active_tracker_limit limits the
|
|
|
|
// number of torrents that will be active on the DHT
|
|
|
|
// versus the tracker. If the active limit is set higher
|
|
|
|
// than these numbers, some torrents will be "active" in
|
|
|
|
// the sense that they will accept incoming connections,
|
|
|
|
// but not announce on the DHT or the tracker
|
2008-04-24 05:28:48 +02:00
|
|
|
int active_downloads;
|
|
|
|
int active_seeds;
|
2010-03-29 02:34:04 +02:00
|
|
|
int active_dht_limit;
|
|
|
|
int active_tracker_limit;
|
|
|
|
int active_lsd_limit;
|
2008-06-21 14:31:28 +02:00
|
|
|
int active_limit;
|
2008-04-24 05:28:48 +02:00
|
|
|
|
2009-05-27 21:27:12 +02:00
|
|
|
// prefer seeding torrents when determining which torrents to give
|
|
|
|
// active slots to, the default is false which gives preference to
|
|
|
|
// downloading torrents
|
|
|
|
bool auto_manage_prefer_seeds;
|
|
|
|
|
2008-06-21 11:15:29 +02:00
|
|
|
// if this is true, torrents that don't have any significant
|
|
|
|
// transfers are not counted as active when determining which
|
|
|
|
// auto managed torrents to pause and resume
|
2008-06-21 14:31:28 +02:00
|
|
|
bool dont_count_slow_torrents;
|
2008-06-21 11:15:29 +02:00
|
|
|
|
2008-04-24 05:28:48 +02:00
|
|
|
// the number of seconds in between recalculating which
|
|
|
|
// torrents to activate and which ones to queue
|
|
|
|
int auto_manage_interval;
|
2006-08-01 17:27:08 +02:00
|
|
|
|
2012-12-05 07:11:02 +01:00
|
|
|
// when a seeding torrent reaches either the share ratio
|
2008-04-24 05:28:48 +02:00
|
|
|
// (bytes up / bytes down) or the seed time ratio
|
|
|
|
// (seconds as seed / seconds as downloader) or the seed
|
|
|
|
// time limit (seconds as seed) it is considered
|
|
|
|
// done, and it will leave room for other torrents
|
|
|
|
// the default value for share ratio is 2
|
|
|
|
// the default seed time ratio is 7, because that's a common
|
|
|
|
// asymmetry ratio on connections
|
|
|
|
float share_ratio_limit;
|
|
|
|
float seed_time_ratio_limit;
|
|
|
|
int seed_time_limit;
|
2008-05-12 07:17:11 +02:00
|
|
|
|
2010-10-30 17:59:57 +02:00
|
|
|
// the interval (in seconds) between optimistic disconnects
|
|
|
|
// if the disconnects happen and how many peers are disconnected
|
|
|
|
// is controlled by peer_turnover and peer_turnover_cutoff
|
|
|
|
int peer_turnover_interval;
|
|
|
|
|
2008-05-12 07:17:11 +02:00
|
|
|
// the percentage of peers to disconnect every
|
2010-10-30 17:59:57 +02:00
|
|
|
// turnoever interval (if we're at the peer limit)
|
|
|
|
// defaults to 2/50:th
|
2008-05-12 07:17:11 +02:00
|
|
|
float peer_turnover;
|
|
|
|
|
|
|
|
// when we are connected to more than
|
2009-01-28 06:19:19 +01:00
|
|
|
// limit * peer_turnover_cutoff peers
|
2008-05-12 07:17:11 +02:00
|
|
|
// disconnect peer_turnover fraction
|
|
|
|
// of the peers
|
|
|
|
float peer_turnover_cutoff;
|
|
|
|
|
|
|
|
// if this is true (default) connections where both
|
|
|
|
// ends have no utility in keeping the connection open
|
|
|
|
// are closed. for instance if both ends have completed
|
|
|
|
// their downloads
|
|
|
|
bool close_redundant_connections;
|
2008-05-19 06:06:25 +02:00
|
|
|
|
|
|
|
// the number of seconds between scrapes of
|
|
|
|
// queued torrents (auto managed and paused)
|
|
|
|
int auto_scrape_interval;
|
|
|
|
|
|
|
|
// the minimum number of seconds between any
|
|
|
|
// automatic scrape (regardless of torrent)
|
|
|
|
int auto_scrape_min_interval;
|
2008-05-28 20:25:48 +02:00
|
|
|
|
|
|
|
// the max number of peers in the peer list
|
|
|
|
// per torrent. This is the peers we know
|
|
|
|
// about, not necessarily connected to.
|
|
|
|
int max_peerlist_size;
|
2008-08-02 00:34:37 +02:00
|
|
|
|
2009-05-13 03:34:10 +02:00
|
|
|
// when a torrent is paused, this is the max peer
|
|
|
|
// list size that's used
|
|
|
|
int max_paused_peerlist_size;
|
|
|
|
|
2008-08-02 00:34:37 +02:00
|
|
|
// any announce intervals reported from a tracker
|
|
|
|
// that is lower than this, will be clamped to this
|
|
|
|
// value. It's specified in seconds
|
|
|
|
int min_announce_interval;
|
2008-09-06 23:04:57 +02:00
|
|
|
|
|
|
|
// if true, partial pieces are picked before pieces
|
|
|
|
// that are more rare
|
|
|
|
bool prioritize_partial_pieces;
|
2008-10-01 07:25:18 +02:00
|
|
|
|
|
|
|
// the number of seconds a torrent is considered
|
|
|
|
// active after it was started, regardless of
|
|
|
|
// upload and download speed. This is so that
|
|
|
|
// newly started torrents are not considered
|
|
|
|
// inactive until they have a fair chance to
|
|
|
|
// start downloading.
|
|
|
|
int auto_manage_startup;
|
2008-11-18 12:14:44 +01:00
|
|
|
|
|
|
|
// if set to true, the estimated TCP/IP overhead is
|
|
|
|
// drained from the rate limiters, to avoid exceeding
|
|
|
|
// the limits with the total traffic
|
|
|
|
bool rate_limit_ip_overhead;
|
2008-11-29 09:38:40 +01:00
|
|
|
|
2009-06-28 22:21:55 +02:00
|
|
|
// this announces to all trackers within the current
|
|
|
|
// tier. Trackers within a tier are supposed to share
|
|
|
|
// peers, this could be used for trackers that don't,
|
|
|
|
// and require the clients to announce to all of them.
|
|
|
|
bool announce_to_all_trackers;
|
|
|
|
|
2008-11-29 09:38:40 +01:00
|
|
|
// if set to true, multi tracker torrents are treated
|
|
|
|
// the same way uTorrent treats them. It defaults to
|
|
|
|
// false in order to comply with the extension definition.
|
2009-06-28 22:21:55 +02:00
|
|
|
// When this is enabled, one tracker from each tier is
|
|
|
|
// announced
|
|
|
|
bool announce_to_all_tiers;
|
2008-12-08 10:13:21 +01:00
|
|
|
|
|
|
|
// when this is set to true, if there is a tracker entry
|
|
|
|
// with udp:// protocol, it is preferred over the same
|
|
|
|
// tracker over http://.
|
|
|
|
bool prefer_udp_trackers;
|
2008-12-09 08:56:37 +01:00
|
|
|
|
|
|
|
// when set to true, a piece has to have been forwarded
|
|
|
|
// to a third peer before another one is handed out
|
|
|
|
bool strict_super_seeding;
|
2008-12-11 00:07:44 +01:00
|
|
|
|
|
|
|
// the number of pieces to send to each peer when seeding
|
|
|
|
// before rotating to a new peer
|
|
|
|
int seeding_piece_quota;
|
2009-01-05 02:08:09 +01:00
|
|
|
|
|
|
|
// the maximum number of sparse regions before starting
|
|
|
|
// to prioritize pieces close to other pieces (to maintain
|
|
|
|
// the number of sparse regions). This is set to 30000 on
|
|
|
|
// windows because windows vista has a new limit on the
|
|
|
|
// numbers of sparse regions one file may have
|
|
|
|
// if it is set to 0 this behavior is disabled
|
|
|
|
// this is a hack to avoid a terrible bug on windows
|
|
|
|
// don't use unless you have to, it screws with rarest-first
|
|
|
|
// piece selection, and reduces swarm performance
|
|
|
|
int max_sparse_regions;
|
2009-02-06 10:46:13 +01:00
|
|
|
|
|
|
|
#ifndef TORRENT_DISABLE_MLOCK
|
|
|
|
// if this is set to true, the memory allocated for the
|
|
|
|
// disk cache will be locked in physical RAM, never to
|
|
|
|
// be swapped out
|
|
|
|
bool lock_disk_cache;
|
|
|
|
#endif
|
2009-03-12 18:06:41 +01:00
|
|
|
|
|
|
|
// the number of times to reject requests while being
|
|
|
|
// choked before disconnecting a peer for being malicious
|
|
|
|
int max_rejects;
|
2009-05-01 06:59:15 +02:00
|
|
|
|
|
|
|
// sets the socket send and receive buffer sizes
|
|
|
|
// 0 means OS default
|
|
|
|
int recv_socket_buffer_size;
|
|
|
|
int send_socket_buffer_size;
|
2009-05-03 21:09:06 +02:00
|
|
|
|
|
|
|
// if this is set to false, the hashing will be
|
|
|
|
// optimized for memory usage instead of the
|
|
|
|
// number of read operations
|
|
|
|
bool optimize_hashing_for_speed;
|
2009-05-22 08:32:39 +02:00
|
|
|
|
|
|
|
// if > 0, file checks will have a short
|
|
|
|
// delay between disk operations, to make it
|
|
|
|
// less intrusive on the system as a whole
|
|
|
|
// blocking the disk. This delay is specified
|
|
|
|
// in milliseconds and the delay will be this
|
|
|
|
// long per 16kiB block
|
|
|
|
// the default of 10 ms/16kiB will limit
|
|
|
|
// the checking rate to 1.6 MiB per second
|
|
|
|
int file_checks_delay_per_block;
|
2009-05-23 09:35:45 +02:00
|
|
|
|
|
|
|
enum disk_cache_algo_t
|
2011-03-20 06:47:27 +01:00
|
|
|
{ lru, largest_contiguous, avoid_readback };
|
2009-05-23 09:35:45 +02:00
|
|
|
|
|
|
|
disk_cache_algo_t disk_cache_algorithm;
|
2009-05-23 21:27:27 +02:00
|
|
|
|
|
|
|
// the number of blocks that will be read ahead
|
|
|
|
// when reading a block into the read cache
|
|
|
|
int read_cache_line_size;
|
2009-05-24 02:12:53 +02:00
|
|
|
|
|
|
|
// whenever a contiguous range of this many
|
|
|
|
// blocks is found in the write cache, it
|
|
|
|
// is flushed immediately
|
|
|
|
int write_cache_line_size;
|
2009-06-10 11:20:55 +02:00
|
|
|
|
2009-06-19 00:32:55 +02:00
|
|
|
// this is the number of seconds a disk failure
|
|
|
|
// occurs until libtorrent will re-try.
|
|
|
|
int optimistic_disk_retry;
|
2009-08-02 08:40:45 +02:00
|
|
|
|
|
|
|
// when set to true, all data downloaded from
|
|
|
|
// peers will be assumed to be correct, and not
|
|
|
|
// tested to match the hashes in the torrent
|
|
|
|
// this is only useful for simulation and
|
|
|
|
// testing purposes (typically combined with
|
|
|
|
// disabled_storage)
|
|
|
|
bool disable_hash_checks;
|
2009-08-20 05:19:12 +02:00
|
|
|
|
2009-09-05 09:21:10 +02:00
|
|
|
// if this is true, disk read operations may
|
|
|
|
// be re-ordered based on their physical disk
|
|
|
|
// read offset. This greatly improves throughput
|
|
|
|
// when uploading to many peers. This assumes
|
|
|
|
// a traditional hard drive with a read head
|
|
|
|
// and spinning platters. If your storage medium
|
|
|
|
// is a solid state drive, this optimization
|
|
|
|
// doesn't give you an benefits
|
|
|
|
bool allow_reordered_disk_operations;
|
|
|
|
|
2009-08-20 05:19:12 +02:00
|
|
|
// if this is true, i2p torrents are allowed
|
|
|
|
// to also get peers from other sources than
|
|
|
|
// the tracker, and connect to regular IPs,
|
|
|
|
// not providing any anonymization. This may
|
|
|
|
// be useful if the user is not interested in
|
|
|
|
// the anonymization of i2p, but still wants to
|
|
|
|
// be able to connect to i2p peers.
|
|
|
|
bool allow_i2p_mixed;
|
2009-09-01 06:41:50 +02:00
|
|
|
|
|
|
|
// the max number of pieces that a peer can
|
|
|
|
// suggest to use before we start dropping
|
|
|
|
// previous suggested piece
|
|
|
|
int max_suggest_pieces;
|
2010-01-14 03:16:23 +01:00
|
|
|
|
|
|
|
// if set to true, requests that have have not been
|
|
|
|
// satisfied after the equivalence of the entire
|
|
|
|
// request queue has been received, will be considered lost
|
|
|
|
bool drop_skipped_requests;
|
2010-01-23 04:02:32 +01:00
|
|
|
|
|
|
|
// if this is set to true, the disk I/O will be
|
|
|
|
// run at lower-than-normal priority. This is
|
|
|
|
// intended to make the machine more responsive
|
|
|
|
// to foreground tasks, while bittorrent runs
|
|
|
|
// in the background
|
|
|
|
bool low_prio_disk;
|
2010-01-30 04:50:17 +01:00
|
|
|
|
2010-02-05 09:23:17 +01:00
|
|
|
// number of seconds between local service announces for
|
|
|
|
// torrents. Defaults to 5 minutes
|
|
|
|
int local_service_announce_interval;
|
|
|
|
|
2010-02-14 02:39:55 +01:00
|
|
|
// number of seconds between DHT announces for
|
|
|
|
// torrents. Defaults to 15 minutes
|
|
|
|
int dht_announce_interval;
|
|
|
|
|
2010-02-06 09:14:18 +01:00
|
|
|
// the number of seconds a connection ID received
|
|
|
|
// from a UDP tracker is valid for. This is specified
|
|
|
|
// as 60 seconds
|
|
|
|
int udp_tracker_token_expiry;
|
|
|
|
|
2010-01-30 04:50:17 +01:00
|
|
|
// if this is set to true, any block read from the
|
|
|
|
// disk cache will be dropped from the cache immediately
|
|
|
|
// following. This may be useful if the block is not
|
|
|
|
// expected to be hit again. It would save some memory
|
|
|
|
bool volatile_read_cache;
|
2010-01-31 20:14:00 +01:00
|
|
|
|
|
|
|
// if this is set to true, the size of the cache line
|
|
|
|
// generated by a particular read request depends on the
|
|
|
|
// rate you're sending to that peer. This optimizes the
|
|
|
|
// memory usage of the disk read cache by reading
|
|
|
|
// further ahead for peers that you're uploading at high
|
|
|
|
// rates to
|
|
|
|
bool guided_read_cache;
|
|
|
|
|
|
|
|
// this is the default minimum time any read cache line
|
|
|
|
// is kept in the cache.
|
|
|
|
int default_cache_min_age;
|
2010-02-02 19:39:32 +01:00
|
|
|
|
|
|
|
// the global number of optimistic unchokes
|
|
|
|
// 0 means automatic
|
|
|
|
int num_optimistic_unchoke_slots;
|
2010-02-02 20:44:52 +01:00
|
|
|
|
|
|
|
// if set to true, files won't have their atime updated
|
|
|
|
// on disk reads. This works on linux
|
|
|
|
bool no_atime_storage;
|
2010-02-09 04:04:41 +01:00
|
|
|
|
|
|
|
// === BitTyrant unchoker settings ==
|
|
|
|
|
|
|
|
// when using BitTyrant choker, this is the default
|
|
|
|
// assumed reciprocation rate. This is where each peer starts
|
|
|
|
int default_est_reciprocation_rate;
|
|
|
|
|
|
|
|
// this is the increase of the estimated reciprocation rate
|
|
|
|
// in percent. We increase by this amount once every unchoke
|
|
|
|
// interval that we are choked by the other peer and we have
|
|
|
|
// unchoked them
|
|
|
|
int increase_est_reciprocation_rate;
|
|
|
|
|
|
|
|
// each unchoke interval that we stay unchoked by the other
|
|
|
|
// peer, and we have unchoked this peer as well, we decrease
|
|
|
|
// our estimate of the reciprocation rate, since we might have
|
|
|
|
// over-estimated it
|
|
|
|
int decrease_est_reciprocation_rate;
|
2010-02-11 05:39:04 +01:00
|
|
|
|
|
|
|
// if set to true, an incoming connection to a torrent that's
|
|
|
|
// paused and auto-managed will make the torrent start.
|
|
|
|
bool incoming_starts_queued_torrents;
|
2010-02-18 07:45:07 +01:00
|
|
|
|
|
|
|
// when set to true, the downloaded counter sent to trackers
|
|
|
|
// will include the actual number of payload bytes donwnloaded
|
|
|
|
// including redundant bytes. If set to false, it will not include
|
|
|
|
// any redundany bytes
|
|
|
|
bool report_true_downloaded;
|
2010-02-18 20:25:15 +01:00
|
|
|
|
|
|
|
// if set to true, libtorrent won't request a piece multiple times
|
|
|
|
// until every piece is requested
|
|
|
|
bool strict_end_game_mode;
|
2010-03-03 02:31:31 +01:00
|
|
|
|
2010-03-26 18:45:16 +01:00
|
|
|
// if this is true, the broadcast socket will not only use IP multicast
|
|
|
|
// but also send the messages on the broadcast address. This is false by
|
|
|
|
// default in order to avoid flooding networks for no good reason. If
|
|
|
|
// a network is known not to support multicast, this can be enabled
|
|
|
|
bool broadcast_lsd;
|
2010-04-11 23:02:43 +02:00
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
// when set to true, libtorrent will try to make outgoing utp connections
|
|
|
|
bool enable_outgoing_utp;
|
|
|
|
|
|
|
|
// if set to false, libtorrent will reject incoming utp connections
|
|
|
|
bool enable_incoming_utp;
|
|
|
|
|
|
|
|
// when set to false, no outgoing TCP connections will be made
|
|
|
|
bool enable_outgoing_tcp;
|
|
|
|
|
|
|
|
// if set to false, libtorrent will reject incoming tcp connections
|
|
|
|
bool enable_incoming_tcp;
|
|
|
|
|
|
|
|
// the max number of peers we accept from pex messages from a single peer.
|
|
|
|
// this limits the number of concurrent peers any of our peers claims to
|
|
|
|
// be connected to. If they clain to be connected to more than this, we'll
|
|
|
|
// ignore any peer that exceeds this limit
|
|
|
|
int max_pex_peers;
|
|
|
|
|
2010-04-11 23:02:43 +02:00
|
|
|
// when set to true, the file modification time is ignored when loading
|
|
|
|
// resume data. The resume data includes the expected timestamp of each
|
|
|
|
// file and is typically compared to make sure the files haven't changed
|
|
|
|
// since the last session
|
|
|
|
bool ignore_resume_timestamps;
|
2010-04-13 06:30:34 +02:00
|
|
|
|
2011-02-06 01:50:12 +01:00
|
|
|
// normally, if a resume file is incomplete (typically there's no
|
|
|
|
// "file sizes" field) the torrent is queued for a full check. If
|
|
|
|
// this settings is set to true, instead libtorrent will assume
|
|
|
|
// we have none of the files and go straight to download
|
|
|
|
bool no_recheck_incomplete_resume;
|
|
|
|
|
2012-07-09 00:47:25 +02:00
|
|
|
// when this is true, libtorrent will take actions to make sure no
|
2013-02-19 07:48:53 +01:00
|
|
|
// privacy sensitive information is leaked out from the client.
|
|
|
|
// With this option, your IP address will not be exposed over
|
|
|
|
// the wire protocol. Other measures will also be taken to make it
|
|
|
|
// harder to track you.
|
2010-04-13 06:30:34 +02:00
|
|
|
bool anonymous_mode;
|
2010-05-03 10:54:03 +02:00
|
|
|
|
2013-02-19 07:48:53 +01:00
|
|
|
// when this is true, no connection will ever be made without going
|
|
|
|
// through a proxy. If you set up a proxy and prefer connections not
|
|
|
|
// supported by the proxy to fail, rather than circumventing it, set
|
|
|
|
// this to true. For instance, reverse DNS lookups can rarely be
|
|
|
|
// made via a proxy, so resolving peer countries is disabled with
|
|
|
|
// this switch.
|
|
|
|
bool force_proxy;
|
|
|
|
|
2010-05-03 10:54:03 +02:00
|
|
|
// the number of milliseconds between internal ticks. Should be no
|
|
|
|
// more than one second (i.e. 1000).
|
|
|
|
int tick_interval;
|
2010-07-15 08:27:44 +02:00
|
|
|
|
|
|
|
// specifies whether downloads from web seeds is reported to the
|
|
|
|
// tracker or not. Defaults to on
|
|
|
|
bool report_web_seed_downloads;
|
2010-09-05 18:01:36 +02:00
|
|
|
|
|
|
|
// this is the target share ratio for share-mode torrents
|
|
|
|
int share_mode_target;
|
2010-10-09 21:09:38 +02:00
|
|
|
|
|
|
|
// max upload rate in bytes per second for the session
|
|
|
|
int upload_rate_limit;
|
|
|
|
|
|
|
|
// max download rate in bytes per second for the session
|
|
|
|
int download_rate_limit;
|
|
|
|
|
|
|
|
// max upload rate in bytes per second for peers on the local
|
|
|
|
// network, in the session
|
|
|
|
int local_upload_rate_limit;
|
|
|
|
|
|
|
|
// max download rate in bytes per second for peers on the local
|
|
|
|
// network, in the session
|
|
|
|
int local_download_rate_limit;
|
|
|
|
|
2011-03-14 08:47:24 +01:00
|
|
|
// max upload rate used by the DHT in bytes per second
|
|
|
|
int dht_upload_rate_limit;
|
|
|
|
|
2010-10-09 21:09:38 +02:00
|
|
|
// the max number of unchoke slots in the session (might be
|
|
|
|
// overridden by unchoke algorithm)
|
|
|
|
int unchoke_slots_limit;
|
|
|
|
|
|
|
|
// the max number of half-open TCP connections
|
|
|
|
int half_open_limit;
|
|
|
|
|
|
|
|
// the max number of connections in the session
|
|
|
|
int connections_limit;
|
2010-10-29 10:10:12 +02:00
|
|
|
|
2012-12-31 07:54:54 +01:00
|
|
|
// the number of extra incoming connections allowed
|
|
|
|
// temporarily, in order to support replacing peers
|
|
|
|
int connections_slack;
|
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
// target delay, milliseconds
|
|
|
|
int utp_target_delay;
|
|
|
|
|
|
|
|
// max number of bytes to increase cwnd per rtt in uTP
|
|
|
|
// congestion controller
|
|
|
|
int utp_gain_factor;
|
|
|
|
|
|
|
|
// the shortest allowed uTP connection timeout in milliseconds
|
|
|
|
// defaults to 500 milliseconds. The shorter timeout, the
|
|
|
|
// faster the connection recovers from a loss of an entire window
|
|
|
|
int utp_min_timeout;
|
|
|
|
|
|
|
|
// the number of SYN packets that are sent before giving up
|
|
|
|
int utp_syn_resends;
|
|
|
|
|
|
|
|
// the number of resent packets sent on a closed socket before giving up
|
|
|
|
int utp_fin_resends;
|
|
|
|
|
|
|
|
// the number of times to send a packet before giving up
|
|
|
|
int utp_num_resends;
|
|
|
|
|
|
|
|
// initial timeout for uTP SYN packets
|
|
|
|
int utp_connect_timeout;
|
|
|
|
|
2012-06-21 17:05:57 +02:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2010-11-29 02:33:05 +01:00
|
|
|
// number of milliseconds of delaying ACKing packets the most
|
|
|
|
int utp_delayed_ack;
|
2012-06-21 17:05:57 +02:00
|
|
|
#endif
|
2010-11-29 02:33:05 +01:00
|
|
|
|
|
|
|
// set to true if the uTP socket buffer size is allowed to increase
|
|
|
|
// dynamically based on the NIC MTU setting. This is true by default
|
|
|
|
// and improves uTP performance for networks with larger frame sizes
|
|
|
|
// including loopback
|
|
|
|
bool utp_dynamic_sock_buf;
|
|
|
|
|
2012-03-11 06:46:15 +01:00
|
|
|
// what to multiply the congestion window by on packet loss.
|
|
|
|
// it's specified as a percent. The default is 50, i.e. cut
|
|
|
|
// in half
|
|
|
|
int utp_loss_multiplier;
|
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
enum bandwidth_mixed_algo_t
|
|
|
|
{
|
|
|
|
// disables the mixed mode bandwidth balancing
|
|
|
|
prefer_tcp = 0,
|
|
|
|
|
|
|
|
// does not throttle uTP, throttles TCP to the same proportion
|
|
|
|
// of throughput as there are TCP connections
|
|
|
|
peer_proportional = 1
|
|
|
|
|
|
|
|
};
|
|
|
|
// the algorithm to use to balance bandwidth between tcp
|
|
|
|
// connections and uTP connections
|
|
|
|
int mixed_mode_algorithm;
|
|
|
|
|
|
|
|
// set to true if uTP connections should be rate limited
|
|
|
|
// defaults to false
|
|
|
|
bool rate_limit_utp;
|
|
|
|
|
2010-10-29 10:10:12 +02:00
|
|
|
// this is the number passed in to listen(). i.e.
|
|
|
|
// the number of connections to accept while we're
|
|
|
|
// not waiting in an accept() call.
|
|
|
|
int listen_queue_size;
|
2010-12-05 21:40:28 +01:00
|
|
|
|
|
|
|
// if this is true, the &ip= argument in tracker requests
|
|
|
|
// (unless otherwise specified) will be set to the intermediate
|
|
|
|
// IP address if the user is double NATed. If ther user is not
|
|
|
|
// double NATed, this option does not have an affect
|
|
|
|
bool announce_double_nat;
|
2010-12-17 04:10:56 +01:00
|
|
|
|
|
|
|
// the first tracker response after a torrent is started
|
|
|
|
// will cause this many connections to be made immediately.
|
|
|
|
// instead of waiting for the connection scheduler which
|
|
|
|
// triggeres every second
|
|
|
|
int torrent_connect_boost;
|
2010-12-17 04:20:36 +01:00
|
|
|
|
|
|
|
// this controls whether or not seeding (and complete) torrents
|
|
|
|
// attempt to make outgoing connections or not. It defaults to
|
|
|
|
// true, but can be set to zero for specific applications where
|
|
|
|
// making outgoing connections is costly and known to not
|
|
|
|
// add any benefits
|
|
|
|
bool seeding_outgoing_connections;
|
2010-12-31 01:33:23 +01:00
|
|
|
|
|
|
|
// when this is true, libtorrent will not attempt to make outgoing
|
|
|
|
// connections to peers whose port is < 1024. This is a safety
|
|
|
|
// precaution to avoid being part of a DDoS attack
|
|
|
|
bool no_connect_privileged_ports;
|
2011-01-23 19:00:52 +01:00
|
|
|
|
|
|
|
// the max alert queue size
|
|
|
|
int alert_queue_size;
|
2011-01-29 11:37:21 +01:00
|
|
|
|
|
|
|
// the max allowed size for metadata received by the
|
|
|
|
// ut_metadata extension (i.e. magnet links)
|
|
|
|
int max_metadata_size;
|
2011-02-16 04:11:55 +01:00
|
|
|
|
|
|
|
// attempt to smooth out connects to avoid getting spikes in
|
|
|
|
// opening connections and timing out connections
|
|
|
|
bool smooth_connects;
|
2011-02-26 19:17:55 +01:00
|
|
|
|
|
|
|
// always send user-agent
|
|
|
|
bool always_send_user_agent;
|
2011-03-04 07:55:39 +01:00
|
|
|
|
|
|
|
// if true, trackers will also be filtered by the IP
|
|
|
|
// filter, otherwise they are exempt
|
|
|
|
bool apply_ip_filter_to_trackers;
|
2011-03-20 20:17:59 +01:00
|
|
|
|
|
|
|
// to avoid write jobs starving read jobs, if this many
|
|
|
|
// write jobs have been taking priority in a row, service
|
|
|
|
// one read job
|
|
|
|
int read_job_every;
|
2011-04-26 09:03:05 +02:00
|
|
|
|
|
|
|
// issue posix_fadvise() or fcntl(F_RDADVISE) for disk reads
|
|
|
|
// ahead of time
|
|
|
|
bool use_disk_read_ahead;
|
2011-06-09 08:08:24 +02:00
|
|
|
|
|
|
|
// if set to true, files will be locked when opened.
|
|
|
|
// preventing any other process from modifying them
|
|
|
|
bool lock_files;
|
2012-01-14 17:04:25 +01:00
|
|
|
|
|
|
|
// open an ssl listen socket for ssl torrents on this port
|
|
|
|
int ssl_listen;
|
2012-03-29 05:51:22 +02:00
|
|
|
|
|
|
|
// this is the factor X in the formula to calculate the
|
|
|
|
// next tracker timeout:
|
|
|
|
// delay = 5 + X/100 * fails^2
|
|
|
|
// so, it's an exponential back-off, and this factor
|
|
|
|
// determines how fast the back-off happens. Default
|
|
|
|
// is 250
|
|
|
|
int tracker_backoff;
|
2012-04-11 05:25:09 +02:00
|
|
|
|
|
|
|
// when true, web seeds sending bad data will be banned
|
|
|
|
bool ban_web_seeds;
|
2012-10-19 03:28:47 +02:00
|
|
|
|
|
|
|
// http_connection maximum receive buffer size
|
|
|
|
// limits torrent file size for URL torrents
|
|
|
|
int max_http_recv_buffer_size;
|
2013-02-23 23:13:25 +01:00
|
|
|
|
|
|
|
// enables/disables the share-mode extension
|
|
|
|
bool support_share_mode;
|
|
|
|
|
|
|
|
// if this is false, don't advertise support for
|
|
|
|
// the Tribler merkle tree piece message
|
|
|
|
bool support_merkle_torrents;
|
|
|
|
|
|
|
|
// if this is true, the number of redundant bytes
|
|
|
|
// is sent to the tracker
|
|
|
|
bool report_redundant_bytes;
|
|
|
|
|
|
|
|
// the version string to advertise for this client
|
|
|
|
// in the peer protocol handshake. If this is empty
|
|
|
|
// the user_agent is used
|
|
|
|
std::string handshake_client_version;
|
2008-04-24 05:28:48 +02:00
|
|
|
};
|
|
|
|
|
2006-08-01 17:27:08 +02:00
|
|
|
#ifndef TORRENT_DISABLE_DHT
|
|
|
|
struct dht_settings
|
|
|
|
{
|
|
|
|
dht_settings()
|
2009-10-26 23:44:49 +01:00
|
|
|
: max_peers_reply(100)
|
2006-08-01 17:27:08 +02:00
|
|
|
, search_branching(5)
|
2010-11-29 02:33:05 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2007-03-15 23:03:56 +01:00
|
|
|
, service_port(0)
|
2010-11-29 02:33:05 +01:00
|
|
|
#endif
|
2006-08-01 17:27:08 +02:00
|
|
|
, max_fail_count(20)
|
2011-05-23 07:07:52 +02:00
|
|
|
, max_torrents(2000)
|
|
|
|
, max_dht_items(700)
|
2009-09-27 05:38:41 +02:00
|
|
|
, max_torrent_search_reply(20)
|
2011-01-08 09:54:51 +01:00
|
|
|
, restrict_routing_ips(true)
|
|
|
|
, restrict_search_ips(true)
|
2012-09-22 23:40:16 +02:00
|
|
|
, extended_routing_table(true)
|
2013-01-20 08:54:54 +01:00
|
|
|
, aggressive_lookups(true)
|
2006-08-01 17:27:08 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
// the maximum number of peers to send in a
|
|
|
|
// reply to get_peers
|
|
|
|
int max_peers_reply;
|
|
|
|
|
|
|
|
// the number of simultanous "connections" when
|
|
|
|
// searching the DHT.
|
|
|
|
int search_branching;
|
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
#ifndef TORRENT_NO_DEPRECATE
|
2006-08-01 17:27:08 +02:00
|
|
|
// the listen port for the dht. This is a UDP port.
|
2007-03-15 23:03:56 +01:00
|
|
|
// zero means use the same as the tcp interface
|
2006-08-01 17:27:08 +02:00
|
|
|
int service_port;
|
2010-11-29 02:33:05 +01:00
|
|
|
#endif
|
2006-08-01 17:27:08 +02:00
|
|
|
|
|
|
|
// the maximum number of times a node can fail
|
|
|
|
// in a row before it is removed from the table.
|
|
|
|
int max_fail_count;
|
2009-09-27 05:38:41 +02:00
|
|
|
|
2011-01-19 06:57:44 +01:00
|
|
|
// this is the max number of torrents the DHT will track
|
|
|
|
int max_torrents;
|
|
|
|
|
2011-05-23 07:07:52 +02:00
|
|
|
// max number of items the DHT will store
|
|
|
|
int max_dht_items;
|
2011-01-19 06:57:44 +01:00
|
|
|
|
2009-09-27 05:38:41 +02:00
|
|
|
// the max number of torrents to return in a
|
|
|
|
// torrent search query to the DHT
|
|
|
|
int max_torrent_search_reply;
|
2011-01-08 09:54:51 +01:00
|
|
|
|
|
|
|
// when set, nodes whose IP address that's in
|
|
|
|
// the same /24 (or /64 for IPv6) range in the
|
|
|
|
// same routing table bucket. This is an attempt
|
|
|
|
// to mitigate node ID spoofing attacks
|
|
|
|
// also restrict any IP to only have a single
|
|
|
|
// entry in the whole routing table
|
|
|
|
bool restrict_routing_ips;
|
|
|
|
|
|
|
|
// applies the same IP restrictions on nodes
|
|
|
|
// received during a DHT search (traversal algorithm)
|
|
|
|
bool restrict_search_ips;
|
2012-09-22 23:40:16 +02:00
|
|
|
|
|
|
|
// if this is set, the first few buckets in the routing
|
|
|
|
// table are enlarged, to make room for more nodes in order
|
|
|
|
// to lower the look-up times
|
|
|
|
bool extended_routing_table;
|
2013-01-20 08:54:54 +01:00
|
|
|
|
|
|
|
// makes lookups waste less time finding results,
|
|
|
|
// at the cost of being more likely to keep more
|
|
|
|
// outstanding requests
|
|
|
|
bool aggressive_lookups;
|
2006-04-25 23:04:48 +02:00
|
|
|
};
|
2006-08-01 17:27:08 +02:00
|
|
|
#endif
|
|
|
|
|
2007-06-06 02:41:20 +02:00
|
|
|
#ifndef TORRENT_DISABLE_ENCRYPTION
|
|
|
|
|
|
|
|
struct pe_settings
|
|
|
|
{
|
|
|
|
pe_settings()
|
|
|
|
: out_enc_policy(enabled)
|
|
|
|
, in_enc_policy(enabled)
|
|
|
|
, allowed_enc_level(both)
|
|
|
|
, prefer_rc4(false)
|
|
|
|
{}
|
|
|
|
|
|
|
|
enum enc_policy
|
|
|
|
{
|
|
|
|
forced, // disallow non encrypted connections
|
|
|
|
enabled, // allow encrypted and non encrypted connections
|
|
|
|
disabled // disallow encrypted connections
|
|
|
|
};
|
|
|
|
|
|
|
|
enum enc_level
|
|
|
|
{
|
2011-08-29 04:00:17 +02:00
|
|
|
plaintext = 1, // use only plaintext encryption
|
|
|
|
rc4 = 2, // use only rc4 encryption
|
|
|
|
both = 3 // allow both
|
2007-06-06 02:41:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enc_policy out_enc_policy;
|
|
|
|
enc_policy in_enc_policy;
|
|
|
|
|
|
|
|
enc_level allowed_enc_level;
|
|
|
|
// if the allowed encryption level is both, setting this to
|
|
|
|
// true will prefer rc4 if both methods are offered, plaintext
|
|
|
|
// otherwise
|
|
|
|
bool prefer_rc4;
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2006-04-25 23:04:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|