forked from premiere/premiere-libtorrent
70 lines
1.7 KiB
C++
70 lines
1.7 KiB
C++
#include "libtorrent/natpmp.hpp"
|
|
#include "libtorrent/socket.hpp"
|
|
#include "libtorrent/socket_io.hpp"
|
|
#include "libtorrent/connection_queue.hpp"
|
|
#include <boost/bind.hpp>
|
|
#include <boost/ref.hpp>
|
|
#include <boost/intrusive_ptr.hpp>
|
|
#include <iostream>
|
|
|
|
using namespace libtorrent;
|
|
|
|
void callback(int mapping, address extip, int port, error_code const& err)
|
|
{
|
|
std::cerr
|
|
<< "mapping: " << mapping
|
|
<< ", port: " << port
|
|
<< ", external-IP: " << print_address(extip)
|
|
<< ", 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);
|
|
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]));
|
|
|
|
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();
|
|
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();
|
|
ios.run(ec);
|
|
std::cerr << "removing mappings" << std::endl;
|
|
natpmp_handler->close();
|
|
|
|
ios.reset();
|
|
ios.run(ec);
|
|
std::cerr << "closing" << std::endl;
|
|
}
|
|
|
|
|