diff options
author | Jean Pierre Dudey <me@jeandudey.tech> | 2020-07-22 18:48:33 -0500 |
---|---|---|
committer | Jean Pierre Dudey <me@jeandudey.tech> | 2020-07-22 19:06:01 -0500 |
commit | 86abf558cbe2917122cfe5a38d6424ddffa729a0 (patch) | |
tree | e731accb452f7ca9ec6429d2e7e6faf0a04d523a /contrib/epee/include/net/local_ip.h | |
parent | Merge pull request #6586 (diff) | |
download | monero-86abf558cbe2917122cfe5a38d6424ddffa729a0.tar.xz |
epee: Remove unused functions in local_ip.h
Signed-off-by: Jean Pierre Dudey <me@jeandudey.tech>
Diffstat (limited to '')
-rw-r--r-- | contrib/epee/include/net/local_ip.h | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/contrib/epee/include/net/local_ip.h b/contrib/epee/include/net/local_ip.h index 246cf6ad8..1eeab2dc5 100644 --- a/contrib/epee/include/net/local_ip.h +++ b/contrib/epee/include/net/local_ip.h @@ -28,8 +28,6 @@ #pragma once #include <string> -#include <boost/algorithm/string/predicate.hpp> -#include <boost/asio/ip/address_v6.hpp> #include "int-util.h" // IP addresses are kept in network byte order @@ -40,30 +38,6 @@ namespace epee { namespace net_utils { - - inline - bool is_ipv6_local(const std::string& ip) - { - auto addr = boost::asio::ip::address_v6::from_string(ip); - - // ipv6 link-local unicast addresses are fe80::/10 - bool is_link_local = addr.is_link_local(); - - auto addr_bytes = addr.to_bytes(); - - // ipv6 unique local unicast addresses start with fc00::/7 -- (fcXX or fdXX) - bool is_unique_local_unicast = (addr_bytes[0] == 0xfc || addr_bytes[0] == 0xfd); - - return is_link_local || is_unique_local_unicast; - } - - inline - bool is_ipv6_loopback(const std::string& ip) - { - // ipv6 loopback is ::1 - return boost::asio::ip::address_v6::from_string(ip).is_loopback(); - } - inline bool is_ip_local(uint32_t ip) { |