1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-23 02:35:57 +01:00

Rename IPv6AddressPrefix to IPv6Prefix

This commit is contained in:
Matias Fontanini
2016-03-02 21:34:21 -08:00
parent ad71158268
commit 3a99213c0b
3 changed files with 5 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ public:
/**
*
*/
struct IPv6AddressPrefix {
struct IPv6Prefix {
IPv6Address address;
uint32_t prefix_length;
};
@@ -69,7 +69,7 @@ public:
*/
struct Info {
IPv4Address ip_addr, netmask, bcast_addr;
std::vector<IPv6AddressPrefix> ipv6_addrs;
std::vector<IPv6Prefix> ipv6_addrs;
address_type hw_addr;
bool is_up;
};