premiere-libtorrent/test/test_natpmp.cpp

70 lines
1.7 KiB
C++
Raw Normal View History

#include "libtorrent/natpmp.hpp"
#include "libtorrent/socket.hpp"
2011-01-18 05:50:39 +01:00
#include "libtorrent/socket_io.hpp"
#include "libtorrent/connection_queue.hpp"
#include <boost/bind.hpp>
#include <boost/ref.hpp>
#include <boost/intrusive_ptr.hpp>
2009-09-19 02:09:34 +02:00
#include <iostream>
using namespace libtorrent;
2011-01-18 04:41:54 +01:00
void callback(int mapping, address extip, int port, error_code const& err)
{
2009-09-19 02:09:34 +02:00
std::cerr
<< "mapping: " << mapping
<< ", port: " << port
2011-01-18 04:41:54 +01:00
<< ", external-IP: " << print_address(extip)
2009-09-19 02:09:34 +02:00
<< ", error: \"" << err.message() << "\"\n";
}
void log_callback(char const* line)
{
std::cerr << line << std::endl;
}
int main(int argc, char* argv[])
{
io_service ios;
std::string user_agent = "test agent";
if (argc != 3)
{
std::cerr << "usage: " << argv[0] << " tcp-port udp-port" << std::endl;
return 1;
}
connection_queue cc(ios);
2009-09-19 02:09:34 +02:00
boost::intrusive_ptr<natpmp> natpmp_handler = new natpmp(ios, address_v4()
, &callback, &log_callback);
deadline_timer timer(ios);
int tcp_map = natpmp_handler->add_mapping(natpmp::tcp, atoi(argv[1]), atoi(argv[1]));
int udp_map = natpmp_handler->add_mapping(natpmp::udp, atoi(argv[2]), atoi(argv[2]));
2008-11-05 04:17:41 +01:00
error_code ec;
timer.expires_from_now(seconds(2), ec);
timer.async_wait(boost::bind(&io_service::stop, boost::ref(ios)));
std::cerr << "mapping ports TCP: " << argv[1]
<< " UDP: " << argv[2] << std::endl;
ios.reset();
2008-11-05 04:17:41 +01:00
ios.run(ec);
timer.expires_from_now(seconds(2), ec);
timer.async_wait(boost::bind(&io_service::stop, boost::ref(ios)));
std::cerr << "removing mapping " << tcp_map << std::endl;
natpmp_handler->delete_mapping(tcp_map);
ios.reset();
2008-11-05 04:17:41 +01:00
ios.run(ec);
std::cerr << "removing mappings" << std::endl;
natpmp_handler->close();
ios.reset();
2008-11-05 04:17:41 +01:00
ios.run(ec);
std::cerr << "closing" << std::endl;
}