2015-08-08 03:28:51 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2015, Arvid Norberg
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "libtorrent/settings_pack.hpp"
|
|
|
|
#include "libtorrent/alert.hpp"
|
2015-08-09 00:13:43 +02:00
|
|
|
#include "settings.hpp"
|
2015-08-08 03:28:51 +02:00
|
|
|
|
2017-04-12 20:05:53 +02:00
|
|
|
using namespace lt;
|
2015-08-08 03:28:51 +02:00
|
|
|
|
2017-04-12 20:05:53 +02:00
|
|
|
lt::settings_pack settings()
|
2015-08-08 03:28:51 +02:00
|
|
|
{
|
2018-09-25 06:15:12 +02:00
|
|
|
alert_category_t const mask =
|
2018-09-22 02:25:56 +02:00
|
|
|
alert::error_notification
|
|
|
|
| alert::peer_notification
|
|
|
|
| alert::port_mapping_notification
|
|
|
|
| alert::storage_notification
|
|
|
|
| alert::tracker_notification
|
2018-09-28 19:18:34 +02:00
|
|
|
| alert::connect_notification
|
2018-09-22 02:25:56 +02:00
|
|
|
| alert::status_notification
|
|
|
|
| alert::ip_block_notification
|
|
|
|
| alert::dht_notification
|
|
|
|
| alert::session_log_notification
|
|
|
|
| alert::torrent_log_notification
|
|
|
|
| alert::peer_log_notification
|
|
|
|
| alert::incoming_request_notification
|
|
|
|
| alert::dht_log_notification
|
|
|
|
| alert::dht_operation_notification
|
|
|
|
| alert::port_mapping_log_notification
|
|
|
|
| alert::file_progress_notification
|
|
|
|
| alert::piece_progress_notification;
|
2015-08-08 03:28:51 +02:00
|
|
|
|
|
|
|
settings_pack pack;
|
|
|
|
pack.set_bool(settings_pack::enable_lsd, false);
|
|
|
|
pack.set_bool(settings_pack::enable_natpmp, false);
|
|
|
|
pack.set_bool(settings_pack::enable_upnp, false);
|
|
|
|
pack.set_bool(settings_pack::enable_dht, false);
|
2016-08-21 18:15:19 +02:00
|
|
|
pack.set_str(settings_pack::dht_bootstrap_nodes, "");
|
2015-08-08 03:28:51 +02:00
|
|
|
|
2015-12-10 07:56:33 +01:00
|
|
|
pack.set_bool(settings_pack::prefer_rc4, false);
|
|
|
|
pack.set_int(settings_pack::in_enc_policy, settings_pack::pe_disabled);
|
|
|
|
pack.set_int(settings_pack::out_enc_policy, settings_pack::pe_disabled);
|
|
|
|
pack.set_int(settings_pack::allowed_enc_level, settings_pack::pe_both);
|
2018-04-26 09:01:14 +02:00
|
|
|
#if TORRENT_ABI_VERSION == 1
|
2017-12-13 11:22:53 +01:00
|
|
|
pack.set_bool(settings_pack::rate_limit_utp, true);
|
|
|
|
#endif
|
2015-12-10 07:56:33 +01:00
|
|
|
|
2015-08-08 03:28:51 +02:00
|
|
|
pack.set_int(settings_pack::alert_mask, mask);
|
|
|
|
|
|
|
|
#ifndef TORRENT_BUILD_SIMULATOR
|
|
|
|
pack.set_bool(settings_pack::allow_multiple_connections_per_ip, true);
|
|
|
|
#else
|
|
|
|
// we use 0 threads (disk I/O operations will be performed in the network
|
|
|
|
// thread) to be simulator friendly.
|
|
|
|
pack.set_int(settings_pack::aio_threads, 0);
|
|
|
|
#endif
|
|
|
|
|
2018-04-26 09:01:14 +02:00
|
|
|
#if TORRENT_ABI_VERSION == 1
|
2015-08-29 22:04:35 +02:00
|
|
|
pack.set_int(settings_pack::half_open_limit, 1);
|
|
|
|
#endif
|
|
|
|
|
2015-08-08 03:28:51 +02:00
|
|
|
return pack;
|
|
|
|
}
|
|
|
|
|