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>
|
|
|
|
|
|
|
|
|
2007-06-10 22:46:09 +02:00
|
|
|
void test_sleep(int millisec);
|
|
|
|
|
2007-06-09 01:02:31 +02:00
|
|
|
boost::tuple<libtorrent::torrent_handle, libtorrent::torrent_handle
|
|
|
|
, libtorrent::torrent_handle>
|
|
|
|
setup_transfer(libtorrent::session* ses1, libtorrent::session* ses2
|
|
|
|
, libtorrent::session* ses3, bool clear_files, bool use_metadata_transfer = true);
|
2006-05-28 21:03:54 +02:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|