2008-07-01 20:59:13 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2008, 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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2006-05-28 21:03:54 +02:00
|
|
|
#ifndef SETUP_TRANSFER_HPP
|
|
|
|
#define SETUP_TRANSFER_HPP
|
|
|
|
|
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include <boost/tuple/tuple.hpp>
|
2013-06-23 22:37:03 +02:00
|
|
|
#include "test.hpp"
|
2006-05-28 21:03:54 +02:00
|
|
|
|
2009-01-02 10:42:51 +01:00
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
class alert;
|
2009-04-30 19:30:14 +02:00
|
|
|
struct add_torrent_params;
|
2013-06-14 18:38:26 +02:00
|
|
|
struct session_status;
|
2009-01-02 10:42:51 +01:00
|
|
|
}
|
2006-05-28 21:03:54 +02:00
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
extern EXPORT bool tests_failure;
|
|
|
|
|
2013-07-19 23:41:33 +02:00
|
|
|
int EXPORT load_file(std::string const& filename, std::vector<char>& v, libtorrent::error_code& ec, int limit = 8000000);
|
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
void EXPORT report_failure(char const* err, char const* file, int line);
|
|
|
|
|
|
|
|
std::auto_ptr<libtorrent::alert> EXPORT wait_for_alert(libtorrent::session& ses, int type);
|
2013-06-18 09:33:49 +02:00
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
void EXPORT print_ses_rate(float time
|
2013-06-20 07:28:42 +02:00
|
|
|
, libtorrent::torrent_status const* st1
|
2013-06-14 18:38:26 +02:00
|
|
|
, libtorrent::torrent_status const* st2
|
|
|
|
, libtorrent::torrent_status const* st3 = NULL);
|
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
bool EXPORT print_alerts(libtorrent::session& ses, char const* name
|
2008-01-02 04:18:29 +01:00
|
|
|
, bool allow_disconnects = false
|
2008-10-01 01:37:42 +02:00
|
|
|
, bool allow_no_torrents = false
|
2009-01-02 10:42:51 +01:00
|
|
|
, bool allow_failed_fastresume = false
|
2011-04-10 03:36:07 +02:00
|
|
|
, bool (*)(libtorrent::alert*) = 0
|
|
|
|
, bool no_output = false);
|
2009-01-02 10:42:51 +01:00
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
void EXPORT wait_for_listen(libtorrent::session& ses, char const* name);
|
|
|
|
void EXPORT test_sleep(int millisec);
|
2007-06-10 22:46:09 +02:00
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
extern EXPORT boost::detail::atomic_count g_udp_tracker_requests;
|
|
|
|
extern EXPORT boost::detail::atomic_count g_http_tracker_requests;
|
2011-09-17 23:15:42 +02:00
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
void EXPORT create_random_files(std::string const& path, const int file_sizes[], int num_files);
|
2013-01-06 05:53:26 +01:00
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
boost::intrusive_ptr<libtorrent::torrent_info> EXPORT create_torrent(std::ostream* file = 0
|
2013-07-28 17:06:28 +02:00
|
|
|
, int piece_size = 16 * 1024, int num_pieces = 13, bool add_tracker = true
|
|
|
|
, std::string ssl_certificate = "");
|
2007-10-04 11:32:09 +02:00
|
|
|
|
2009-02-03 08:46:24 +01:00
|
|
|
boost::tuple<libtorrent::torrent_handle
|
|
|
|
, libtorrent::torrent_handle
|
2007-06-09 01:02:31 +02:00
|
|
|
, libtorrent::torrent_handle>
|
2013-06-23 19:36:00 +02:00
|
|
|
EXPORT setup_transfer(libtorrent::session* ses1, libtorrent::session* ses2
|
2007-10-01 04:09:12 +02:00
|
|
|
, libtorrent::session* ses3, bool clear_files, bool use_metadata_transfer = true
|
2008-08-18 22:02:50 +02:00
|
|
|
, bool connect = true, std::string suffix = "", int piece_size = 16 * 1024
|
2009-02-03 08:46:24 +01:00
|
|
|
, boost::intrusive_ptr<libtorrent::torrent_info>* torrent = 0, bool super_seeding = false
|
2013-07-28 17:06:28 +02:00
|
|
|
, libtorrent::add_torrent_params const* p = 0, bool stop_lsd = true, bool use_ssl_ports = false);
|
2006-05-28 21:03:54 +02:00
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
int EXPORT start_web_server(bool ssl = false, bool chunked = false);
|
|
|
|
void EXPORT stop_web_server();
|
|
|
|
int EXPORT start_proxy(int type);
|
|
|
|
void EXPORT stop_proxy(int port);
|
2013-08-04 01:30:37 +02:00
|
|
|
void EXPORT stop_all_proxies();
|
2007-11-27 01:06:59 +01:00
|
|
|
|
2013-06-23 19:36:00 +02:00
|
|
|
void EXPORT stop_tracker();
|
|
|
|
int EXPORT start_tracker();
|
2010-02-18 05:37:02 +01:00
|
|
|
|
2006-05-28 21:03:54 +02:00
|
|
|
#endif
|
|
|
|
|