premiere-libtorrent/test/test_upnp.cpp

58 lines
1.6 KiB
C++
Raw Normal View History

2007-04-02 07:14:20 +02:00
#include "libtorrent/upnp.hpp"
#include "libtorrent/socket.hpp"
#include "libtorrent/connection_queue.hpp"
2007-04-02 07:14:20 +02:00
#include <boost/bind.hpp>
#include <boost/ref.hpp>
2007-11-28 04:09:58 +01:00
#include <boost/intrusive_ptr.hpp>
2007-04-02 07:14:20 +02:00
using namespace libtorrent;
void callback(int mapping, int port, std::string const& err)
2007-04-02 07:14:20 +02:00
{
std::cerr << "mapping: " << mapping << ", port: " << port << ", error: \"" << err << "\"\n";
2007-04-02 07:14:20 +02:00
}
int main(int argc, char* argv[])
{
2008-05-03 18:05:42 +02:00
libtorrent::io_service ios;
2007-04-02 07:14:20 +02:00
std::string user_agent = "test agent";
if (argc != 3)
2007-04-02 07:14:20 +02:00
{
std::cerr << "usage: " << argv[0] << " tcp-port udp-port" << std::endl;
2007-04-02 07:14:20 +02:00
return 1;
}
connection_queue cc(ios);
boost::intrusive_ptr<upnp> upnp_handler = new upnp(ios, cc, address_v4(), user_agent, &callback, true);
2008-01-03 20:03:52 +01:00
upnp_handler->discover_device();
2007-04-02 07:14:20 +02:00
2008-05-03 18:05:42 +02:00
libtorrent::deadline_timer timer(ios);
2007-04-02 07:14:20 +02:00
timer.expires_from_now(seconds(2));
2008-05-03 18:05:42 +02:00
timer.async_wait(boost::bind(&libtorrent::io_service::stop, boost::ref(ios)));
2007-04-02 07:14:20 +02:00
std::cerr << "broadcasting for UPnP device" << std::endl;
ios.reset();
ios.run();
upnp_handler->add_mapping(upnp::tcp, atoi(argv[1]), atoi(argv[1]));
upnp_handler->add_mapping(upnp::udp, atoi(argv[2]), atoi(argv[2]));
timer.expires_from_now(seconds(10));
2008-05-03 18:05:42 +02:00
timer.async_wait(boost::bind(&libtorrent::io_service::stop, boost::ref(ios)));
std::cerr << "mapping ports TCP: " << argv[1]
<< " UDP: " << argv[2] << std::endl;
2007-04-02 07:14:20 +02:00
ios.reset();
ios.run();
2008-01-03 20:03:52 +01:00
std::cerr << "router: " << upnp_handler->router_model() << std::endl;
2007-04-02 07:14:20 +02:00
std::cerr << "removing mappings" << std::endl;
2007-11-28 04:09:58 +01:00
upnp_handler->close();
2007-04-02 07:14:20 +02:00
ios.reset();
ios.run();
std::cerr << "closing" << std::endl;
}