1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/net/net_int.hpp

256 lines
4.1 KiB
C++
Raw Normal View History

2018-12-03 23:22:59 +01:00
#ifndef LLARP_NET_INT_HPP
#define LLARP_NET_INT_HPP
// for addrinfo
#ifndef _WIN32
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#else
#include <winsock2.h>
#include <ws2tcpip.h>
#define inet_aton(x, y) inet_pton(AF_INET, x, y)
#endif
#include <net/net.h>
2019-07-31 01:42:13 +02:00
#include <cstdlib> // for itoa
2018-12-03 23:22:59 +01:00
#include <iostream>
2019-03-27 22:20:04 +01:00
#include <util/endian.hpp>
#include <vector>
2018-12-03 23:22:59 +01:00
2020-02-24 18:22:24 +01:00
#include "uint128.hpp"
2019-06-11 18:44:05 +02:00
2018-12-03 23:22:59 +01:00
namespace llarp
{
template <typename UInt_t>
struct huint_t
2018-12-03 23:22:59 +01:00
{
UInt_t h;
2018-12-03 23:22:59 +01:00
constexpr huint_t operator&(huint_t x) const
{
2019-06-11 18:44:05 +02:00
return huint_t{UInt_t{h & x.h}};
}
2018-12-03 23:22:59 +01:00
constexpr huint_t
operator|(huint_t x) const
{
2019-06-11 18:44:05 +02:00
return huint_t{UInt_t{h | x.h}};
}
2018-12-03 23:22:59 +01:00
constexpr huint_t
operator-(huint_t x) const
{
return huint_t{UInt_t{h - x.h}};
}
constexpr huint_t
operator+(huint_t x) const
{
return huint_t{UInt_t{h + x.h}};
}
constexpr huint_t
operator^(huint_t x) const
{
2019-06-11 18:44:05 +02:00
return huint_t{UInt_t{h ^ x.h}};
}
2018-12-03 23:22:59 +01:00
constexpr huint_t
operator~() const
2018-12-03 23:22:59 +01:00
{
2019-06-11 18:44:05 +02:00
return huint_t{UInt_t{~h}};
}
constexpr huint_t
operator<<(int n) const
{
UInt_t v{h};
v <<= n;
return huint_t{v};
2018-12-03 23:22:59 +01:00
}
inline huint_t
operator++()
{
++h;
return *this;
}
2019-05-02 17:19:21 +02:00
inline huint_t
operator--()
2019-02-08 20:43:25 +01:00
{
--h;
return *this;
2019-02-08 20:43:25 +01:00
}
constexpr bool
operator<(huint_t x) const
{
return h < x.h;
}
2019-06-11 18:44:05 +02:00
constexpr bool
operator!=(huint_t x) const
{
return h != x.h;
}
constexpr bool
operator==(huint_t x) const
{
return h == x.h;
}
using V6Container = std::vector<uint8_t>;
void
ToV6(V6Container& c);
2018-12-03 23:22:59 +01:00
std::string
ToString() const;
2018-12-03 23:22:59 +01:00
2019-06-11 18:44:05 +02:00
bool
FromString(const std::string&);
friend std::ostream&
operator<<(std::ostream& out, const huint_t& i)
{
return out << i.ToString();
}
};
2018-12-03 23:22:59 +01:00
using huint32_t = huint_t<uint32_t>;
using huint16_t = huint_t<uint16_t>;
using huint128_t = huint_t<llarp::uint128_t>;
2018-12-03 23:22:59 +01:00
template <typename UInt_t>
struct nuint_t
{
UInt_t n;
2018-12-03 23:22:59 +01:00
constexpr nuint_t operator&(nuint_t x) const
2018-12-03 23:22:59 +01:00
{
return nuint_t{UInt_t(n & x.n)};
2018-12-03 23:22:59 +01:00
}
constexpr nuint_t
operator|(nuint_t x) const
2018-12-03 23:22:59 +01:00
{
return nuint_t{UInt_t(n | x.n)};
}
2018-12-03 23:22:59 +01:00
constexpr nuint_t
operator^(nuint_t x) const
{
return nuint_t{UInt_t(n ^ x.n)};
}
2018-12-03 23:22:59 +01:00
constexpr nuint_t
operator~() const
{
return nuint_t{UInt_t(~n)};
}
2018-12-03 23:22:59 +01:00
inline nuint_t
operator++()
{
++n;
return *this;
}
inline nuint_t
operator--()
{
--n;
return *this;
}
2018-12-03 23:22:59 +01:00
constexpr bool
operator<(nuint_t x) const
{
return n < x.n;
}
2018-12-03 23:22:59 +01:00
constexpr bool
operator==(nuint_t x) const
2018-12-03 23:22:59 +01:00
{
return n == x.n;
2018-12-03 23:22:59 +01:00
}
using V6Container = std::vector<uint8_t>;
void
ToV6(V6Container& c);
2018-12-03 23:22:59 +01:00
std::string
ToString() const;
2018-12-03 23:22:59 +01:00
friend std::ostream&
operator<<(std::ostream& out, const nuint_t& i)
2018-12-03 23:22:59 +01:00
{
return out << i.ToString();
2018-12-03 23:22:59 +01:00
}
};
using nuint32_t = nuint_t<uint32_t>;
using nuint16_t = nuint_t<uint16_t>;
using nuint128_t = nuint_t<llarp::uint128_t>;
2018-12-03 23:22:59 +01:00
static inline nuint32_t
xhtonl(huint32_t x)
{
return nuint32_t{htonl(x.h)};
}
static inline huint32_t
xntohl(nuint32_t x)
{
return huint32_t{ntohl(x.n)};
}
static inline nuint16_t
xhtons(huint16_t x)
{
return nuint16_t{htons(x.h)};
}
static inline huint16_t
xntohs(nuint16_t x)
{
return huint16_t{ntohs(x.n)};
}
template <typename UInt_t>
huint_t<UInt_t>
ToHost(nuint_t<UInt_t> h);
template <typename UInt_t>
nuint_t<UInt_t>
ToNet(huint_t<UInt_t> h);
2018-12-03 23:22:59 +01:00
} // namespace llarp
namespace std
{
template <typename UInt_t>
struct hash<llarp::nuint_t<UInt_t>>
{
size_t
operator()(const llarp::nuint_t<UInt_t>& x) const
{
return std::hash<UInt_t>{}(x.n);
}
};
template <typename UInt_t>
struct hash<llarp::huint_t<UInt_t>>
{
size_t
operator()(const llarp::huint_t<UInt_t>& x) const
{
return std::hash<UInt_t>{}(x.h);
}
};
} // namespace std
2018-12-03 23:22:59 +01:00
#endif