mirror of
https://github.com/arvidn/libtorrent.git
synced 2026-07-26 22:11:43 -04:00
25 lines
598 B
C++
25 lines
598 B
C++
/*
|
|
|
|
Copyright (c) 2007-2008, 2010, 2013-2015, 2017, 2020-2022, Arvid Norberg
|
|
Copyright (c) 2020, Paul-Louis Ageneau
|
|
All rights reserved.
|
|
|
|
You may use, distribute and modify this code under the terms of the BSD license,
|
|
see LICENSE file.
|
|
*/
|
|
|
|
#include "test.hpp"
|
|
#include "disk_io_test.hpp"
|
|
#include "setup_transfer.hpp"
|
|
#include "web_seed_suite.hpp"
|
|
|
|
using namespace lt;
|
|
|
|
const int proxy = lt::settings_pack::none;
|
|
|
|
#if TORRENT_USE_SSL
|
|
TORRENT_TEST_DISK_IO(web_seed_ssl) { run_http_suite(proxy, "https", disk_io); }
|
|
#endif
|
|
|
|
TORRENT_TEST_DISK_IO(web_seed) { run_http_suite(proxy, "http", disk_io); }
|