twisterp2pblockchainnetworkbittorrentmicrobloggingipv6social-networkdhtdecentralizedp2p-networktwister-servertwister-ipv6twister-coretwisterarmy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
3.7 KiB
96 lines
3.7 KiB
/* |
|
|
|
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> |
|
#include "test.hpp" |
|
|
|
namespace libtorrent |
|
{ |
|
class alert; |
|
struct add_torrent_params; |
|
struct session_status; |
|
} |
|
|
|
extern EXPORT bool tests_failure; |
|
|
|
int EXPORT load_file(std::string const& filename, std::vector<char>& v, libtorrent::error_code& ec, int limit = 8000000); |
|
|
|
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); |
|
|
|
void EXPORT print_ses_rate(float time |
|
, 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 |
|
, bool allow_failed_fastresume = false |
|
, bool (*)(libtorrent::alert*) = 0 |
|
, bool no_output = false); |
|
|
|
void EXPORT wait_for_listen(libtorrent::session& ses, char const* name); |
|
void EXPORT test_sleep(int millisec); |
|
|
|
extern EXPORT boost::detail::atomic_count g_udp_tracker_requests; |
|
extern EXPORT boost::detail::atomic_count g_http_tracker_requests; |
|
|
|
void EXPORT create_random_files(std::string const& path, const int file_sizes[], int num_files); |
|
|
|
boost::intrusive_ptr<libtorrent::torrent_info> EXPORT create_torrent(std::ostream* file = 0 |
|
, int piece_size = 16 * 1024, int num_pieces = 13, bool add_tracker = true, bool encrypted = false); |
|
|
|
boost::tuple<libtorrent::torrent_handle |
|
, libtorrent::torrent_handle |
|
, libtorrent::torrent_handle> |
|
EXPORT setup_transfer(libtorrent::session* ses1, libtorrent::session* ses2 |
|
, libtorrent::session* ses3, bool clear_files, bool use_metadata_transfer = true |
|
, bool connect = true, std::string suffix = "", int piece_size = 16 * 1024 |
|
, boost::intrusive_ptr<libtorrent::torrent_info>* torrent = 0, bool super_seeding = false |
|
, libtorrent::add_torrent_params const* p = 0, bool stop_lsd = true, bool encrypted_torrent = false); |
|
|
|
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); |
|
|
|
void EXPORT stop_tracker(); |
|
int EXPORT start_tracker(); |
|
|
|
#endif |
|
|
|
|