premiere-libtorrent/test/setup_transfer.hpp

107 lines
4.0 KiB
C++
Raw Normal View History

/*
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.
*/
#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"
2009-01-02 10:42:51 +01:00
namespace libtorrent
{
class alert;
2009-04-30 19:30:14 +02:00
struct add_torrent_params;
struct session_status;
2009-01-02 10:42:51 +01:00
}
int EXPORT print_failures();
unsigned char EXPORT random_byte();
int EXPORT load_file(std::string const& filename, std::vector<char>& v, libtorrent::error_code& ec, int limit = 8000000);
void EXPORT save_file(char const* filename, char const* data, int size);
void EXPORT report_failure(char const* err, char const* file, int line);
2014-07-06 21:18:00 +02:00
libtorrent::address EXPORT rand_v4();
#if TORRENT_USE_IPV6
libtorrent::address EXPORT rand_v6();
#endif
libtorrent::tcp::endpoint EXPORT rand_tcp_ep();
libtorrent::udp::endpoint EXPORT rand_udp_ep();
2013-11-24 02:32:51 +01:00
std::auto_ptr<libtorrent::alert> EXPORT wait_for_alert(
libtorrent::session& ses, int type, char const* name = "");
void EXPORT print_ses_rate(float time
2013-06-20 07:28:42 +02:00
, libtorrent::torrent_status const* st1
, libtorrent::torrent_status const* st2
, libtorrent::torrent_status const* st3 = NULL);
bool EXPORT print_alerts(libtorrent::session& ses, char const* name
, bool allow_disconnects = false
, 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
void EXPORT wait_for_listen(libtorrent::session& ses, char const* name);
2014-07-06 21:18:00 +02:00
void EXPORT wait_for_downloading(libtorrent::session& ses, char const* name);
void EXPORT test_sleep(int millisec);
2007-06-10 22:46:09 +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
2014-07-06 21:18:00 +02:00
boost::shared_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 = "");
boost::tuple<libtorrent::torrent_handle
, libtorrent::torrent_handle
, libtorrent::torrent_handle>
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
, bool connect = true, std::string suffix = "", int piece_size = 16 * 1024
2014-07-06 21:18:00 +02:00
, boost::shared_ptr<libtorrent::torrent_info>* torrent = 0, bool super_seeding = false
, libtorrent::add_torrent_params const* p = 0, bool stop_lsd = true, bool use_ssl_ports = false
2014-07-06 21:18:00 +02:00
, boost::shared_ptr<libtorrent::torrent_info>* torrent2 = 0);
int EXPORT start_web_server(bool ssl = false, bool chunked = false
, bool keepalive = true);
void EXPORT stop_web_server();
int EXPORT start_proxy(int type);
void EXPORT stop_proxy(int port);
void EXPORT stop_all_proxies();
#endif