2007-04-02 07:14:20 +02:00
|
|
|
#include "libtorrent/upnp.hpp"
|
|
|
|
#include "libtorrent/socket.hpp"
|
2007-05-05 22:00:28 +02:00
|
|
|
#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;
|
|
|
|
|
2008-04-06 21:17:58 +02:00
|
|
|
void callback(int mapping, int port, std::string const& err)
|
2007-04-02 07:14:20 +02:00
|
|
|
{
|
2008-04-06 21:17:58 +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";
|
|
|
|
|
2007-09-10 01:52:34 +02:00
|
|
|
if (argc != 3)
|
2007-04-02 07:14:20 +02:00
|
|
|
{
|
2007-09-10 01:52:34 +02:00
|
|
|
std::cerr << "usage: " << argv[0] << " tcp-port udp-port" << std::endl;
|
2007-04-02 07:14:20 +02:00
|
|
|
return 1;
|
|
|
|
}
|
2007-05-05 22:00:28 +02:00
|
|
|
|
|
|
|
connection_queue cc(ios);
|
2008-01-07 06:48:28 +01:00
|
|
|
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();
|
|
|
|
|
2008-04-06 21:17:58 +02:00
|
|
|
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)));
|
2007-09-10 01:52:34 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|