2006-05-28 19:03:54 +00:00
|
|
|
#ifndef SETUP_TRANSFER_HPP
|
|
|
|
#define SETUP_TRANSFER_HPP
|
|
|
|
|
|
|
|
#include "libtorrent/session.hpp"
|
|
|
|
#include <boost/tuple/tuple.hpp>
|
|
|
|
|
|
|
|
|
2007-06-10 20:46:09 +00:00
|
|
|
void test_sleep(int millisec);
|
|
|
|
|
2007-10-04 09:32:09 +00:00
|
|
|
boost::intrusive_ptr<libtorrent::torrent_info> create_torrent(std::ostream* file = 0);
|
|
|
|
|
2007-06-08 23:02:31 +00:00
|
|
|
boost::tuple<libtorrent::torrent_handle, libtorrent::torrent_handle
|
|
|
|
, libtorrent::torrent_handle>
|
|
|
|
setup_transfer(libtorrent::session* ses1, libtorrent::session* ses2
|
2007-10-01 02:09:12 +00:00
|
|
|
, libtorrent::session* ses3, bool clear_files, bool use_metadata_transfer = true
|
2007-12-30 09:36:01 +00:00
|
|
|
, bool connect = true, std::string suffix = "");
|
2006-05-28 19:03:54 +00:00
|
|
|
|
2007-11-27 00:06:59 +00:00
|
|
|
void start_web_server(int port);
|
|
|
|
void stop_web_server(int port);
|
2007-11-28 00:16:14 +00:00
|
|
|
void start_proxy(int port, int type);
|
|
|
|
void stop_proxy(int port);
|
2007-11-27 00:06:59 +00:00
|
|
|
|
2006-05-28 19:03:54 +00:00
|
|
|
#endif
|
|
|
|
|