premiere-libtorrent/test/setup_transfer.hpp

20 lines
527 B
C++
Raw Normal View History

#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);
boost::intrusive_ptr<libtorrent::torrent_info> create_torrent(std::ostream* file = 0);
boost::tuple<libtorrent::torrent_handle, libtorrent::torrent_handle
, libtorrent::torrent_handle>
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);
#endif