2007-09-20 18:25:07 +02:00
|
|
|
#include <libtorrent/enum_net.hpp>
|
|
|
|
#include <libtorrent/socket.hpp>
|
|
|
|
#include <libtorrent/broadcast_socket.hpp>
|
|
|
|
#include <vector>
|
2008-04-28 02:20:59 +02:00
|
|
|
#include <iomanip>
|
2007-09-20 18:25:07 +02:00
|
|
|
|
|
|
|
using namespace libtorrent;
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
io_service ios;
|
2008-05-03 18:05:42 +02:00
|
|
|
error_code ec;
|
2007-09-20 18:25:07 +02:00
|
|
|
|
2008-04-25 07:51:21 +02:00
|
|
|
address local = guess_local_address(ios);
|
|
|
|
std::cout << "Local address: " << local << std::endl;
|
|
|
|
|
2008-04-28 04:20:40 +02:00
|
|
|
address def_gw = get_default_gateway(ios, ec);
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
std::cerr << ec.message() << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
std::cout << "Default gateway: " << def_gw << std::endl;
|
|
|
|
|
2008-04-28 02:20:59 +02:00
|
|
|
std::cout << "=========== Routes ===========\n";
|
|
|
|
std::vector<ip_route> routes = enum_routes(ios, ec);
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
std::cerr << ec.message() << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << std::setiosflags(std::ios::left)
|
|
|
|
<< std::setw(18) << "destination"
|
|
|
|
<< std::setw(18) << "netmask"
|
|
|
|
<< std::setw(35) << "gateway"
|
|
|
|
<< "interface name"
|
|
|
|
<< std::endl;
|
|
|
|
|
|
|
|
for (std::vector<ip_route>::const_iterator i = routes.begin()
|
|
|
|
, end(routes.end()); i != end; ++i)
|
|
|
|
{
|
|
|
|
std::cout << std::setiosflags(std::ios::left)
|
|
|
|
<< std::setw(18) << i->destination
|
|
|
|
<< std::setw(18) << i->netmask
|
|
|
|
<< std::setw(35) << i->gateway
|
|
|
|
<< i->name
|
|
|
|
<< std::endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << "========= Interfaces =========\n";
|
|
|
|
|
|
|
|
std::vector<ip_interface> const& net = enum_net_interfaces(ios, ec);
|
|
|
|
if (ec)
|
|
|
|
{
|
|
|
|
std::cerr << ec.message() << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::cout << std::setiosflags(std::ios::left)
|
|
|
|
<< std::setw(35) << "address"
|
|
|
|
<< std::setw(18) << "netmask"
|
|
|
|
<< std::setw(18) << "name"
|
|
|
|
<< "flags"
|
|
|
|
<< std::endl;
|
2008-04-25 07:51:21 +02:00
|
|
|
|
2008-01-11 07:49:37 +01:00
|
|
|
for (std::vector<ip_interface>::const_iterator i = net.begin()
|
2007-09-20 18:25:07 +02:00
|
|
|
, end(net.end()); i != end; ++i)
|
|
|
|
{
|
2008-04-28 02:20:59 +02:00
|
|
|
std::cout << std::setiosflags(std::ios::left)
|
|
|
|
<< std::setw(35) << i->interface_address
|
|
|
|
<< std::setw(18) << i->netmask
|
|
|
|
<< std::setw(18) << i->name
|
|
|
|
<< (is_multicast(i->interface_address)?"multicast ":"")
|
|
|
|
<< (is_local(i->interface_address)?"local ":"")
|
|
|
|
<< (is_loopback(i->interface_address)?"loopback ":"")
|
|
|
|
|
|
|
|
<< std::endl;
|
2007-09-20 18:25:07 +02:00
|
|
|
}
|
2007-10-01 19:21:19 +02:00
|
|
|
|
2007-09-20 18:25:07 +02:00
|
|
|
}
|
|
|
|
|