1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
/*
Copyright (c) 2018, Steven Siloti
Copyright (c) 2007-2008, 2016-2017, 2019-2020, Arvid Norberg
Copyright (c) 2018, Alden Torres
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.
*/
#include <cstdio>
#include <string>
#include "libtorrent/enum_net.hpp"
#include "libtorrent/socket.hpp"
#include "libtorrent/aux_/ip_helpers.hpp"
using namespace lt;
namespace {
std::string operator ""_s(char const* str, size_t len) { return std::string(str, len); }
std::string print_flags(interface_flags const f)
{
return
((f & if_flags::up) ? "UP "_s : ""_s)
+ ((f & if_flags::broadcast) ? "BROADCAST "_s : ""_s)
+ ((f & if_flags::loopback) ? "LOOP "_s : ""_s)
+ ((f & if_flags::pointopoint) ? "PPP "_s : ""_s)
+ ((f & if_flags::running) ? "RUN "_s : ""_s)
+ ((f & if_flags::noarp) ? "NOARP "_s : ""_s)
+ ((f & if_flags::promisc) ? "PROMISC "_s : ""_s)
+ ((f & if_flags::allmulti) ? "ALLMULTI "_s : ""_s)
+ ((f & if_flags::master) ? "MASTER "_s : ""_s)
+ ((f & if_flags::slave) ? "SLAVE "_s : ""_s)
+ ((f & if_flags::multicast) ? "MULTICAST "_s : ""_s)
+ ((f & if_flags::dynamic) ? "SYN "_s : ""_s)
+ ((f & if_flags::lower_up) ? "LWR_UP "_s : ""_s)
+ ((f & if_flags::dormant) ? "DORMANT "_s : ""_s)
;
}
char const* print_state(if_state const s)
{
switch (s)
{
case if_state::up: return "up";
case if_state::dormant: return "dormant";
case if_state::lowerlayerdown: return "lowerlayerdown";
case if_state::down: return "down";
case if_state::notpresent: return "notpresent";
case if_state::testing: return "testing";
case if_state::unknown: return "unknown";
}
return "unknown";
}
}
int main()
{
io_context ios;
error_code ec;
std::printf("=========== Routes ===========\n");
auto const routes = enum_routes(ios, ec);
if (ec)
{
std::printf("enum_routes: %s\n", ec.message().c_str());
return 1;
}
std::printf("%-45s%-45s%-35s%-7s%-18s%s\n", "destination", "network", "gateway", "mtu", "source-hint", "interface");
for (auto const& r : routes)
{
std::printf("%-45s%-45s%-35s%-7d%-18s%s\n"
, r.destination.to_string().c_str()
, r.netmask.to_string().c_str()
, r.gateway.is_unspecified() ? "-" : r.gateway.to_string().c_str()
, r.mtu
, r.source_hint.is_unspecified() ? "-" : r.source_hint.to_string().c_str()
, r.name);
}
std::printf("========= Interfaces =========\n");
auto const net = enum_net_interfaces(ios, ec);
if (ec)
{
std::printf("enum_ifs: %s\n", ec.message().c_str());
return 1;
}
std::printf("%-34s%-45s%-20s%-20s%-15s%-20s%s\n", "address", "netmask", "name", "gateway", "state", "flags", "description");
for (auto const& i : net)
{
boost::optional<address> const gateway = get_gateway(i, routes);
std::printf("%-34s%-45s%-20s%-20s%-15s%-20s%s %s\n"
, i.interface_address.to_string().c_str()
, i.netmask.to_string().c_str()
, i.name
, gateway ? gateway->to_string().c_str() : "-"
, print_state(i.state)
, print_flags(i.flags).c_str()
, i.friendly_name
, i.description);
}
}
|