Files
libtorrent/test/setup_transfer.hpp
2007-06-06 00:41:20 +00:00

15 lines
350 B
C++

#ifndef SETUP_TRANSFER_HPP
#define SETUP_TRANSFER_HPP
#include "libtorrent/session.hpp"
#include <boost/tuple/tuple.hpp>
void sleep(int msec);
boost::tuple<libtorrent::torrent_handle, libtorrent::torrent_handle>
setup_transfer(libtorrent::session& ses1, libtorrent::session& ses2
, bool clear_files, bool use_metadata_transfer = true);
#endif