2008-07-01 20:59:13 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2008, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|