11#include <cosmos/BitMask.hxx>
12#include <cosmos/SysString.hxx>
13#include <cosmos/dso_export.h>
14#include <cosmos/net/SocketAddress.hxx>
15#include <cosmos/net/byte_order.hxx>
16#include <cosmos/utils.hxx>
32 NAME_REQUIRED = NI_NAMEREQD,
38 NUMERIC_HOST = NI_NUMERICHOST,
40 NUMERIC_SERVICE = NI_NUMERICSERV,
44 IDN_ALLOW_UNASSIGNED = NI_IDN_ALLOW_UNASSIGNED,
45 IDN_USE_STD3_ASCII_RULES = NI_IDN_USE_STD3_ASCII_RULES,
54 bool isV4()
const {
return this->family() == SocketFamily::INET; }
55 bool isV6()
const {
return this->family() == SocketFamily::INET6; }
58 std::string ipAsString()
const;
60 void setIpFromString(
const SysString str);
71 void getNameInfo(std::string &host, std::string &service,
const NameInfoFlags flags = {});
80 std::string getHostInfo(
const NameInfoFlags flags = {});
87 std::string getServiceInfo(
const NameInfoFlags flags = {});
94 const void* ipAddrPtr()
const;
96 void getNameInfo(std::string *host, std::string *service,
const NameInfoFlags flags);
104 static constexpr inline SocketFamily FAMILY = SocketFamily::INET;
133 return sizeof(m_addr);
137 void setPort(
const net::NetInt16 port) { m_addr.sin_port = to_integral(port.raw()); }
139 IP4RawAddress addr()
const {
return IP4RawAddress{net::RawNetInt32{m_addr.sin_addr.s_addr}}; }
140 void setAddr(
const IP4RawAddress addr) { m_addr.sin_addr.s_addr = to_integral(addr.raw()); }
142 bool operator==(
const IP4Address &other)
const {
143 return addr() == other.addr() && port() == other.port();
146 bool operator!=(
const IP4Address &other)
const {
147 return !(*
this == other);
153 return reinterpret_cast<sockaddr*
>(&m_addr);
157 return reinterpret_cast<const sockaddr*
>(&m_addr);
161 m_addr.sin_family = to_integral(
family());
174 static constexpr inline SocketFamily FAMILY = SocketFamily::INET6;
182 explicit IP6Address(
const sockaddr_in6 &raw) {
197 return sizeof(m_addr);
200 IPPort port()
const {
return IPPort{net::RawNetInt16{m_addr.sin6_port}}; }
201 void setPort(
const IPPort port) { m_addr.sin6_port = to_integral(port.raw()); }
203 IP6RawAddress addr()
const {
205 std::memcpy(ret.data(), m_addr.sin6_addr.s6_addr, ret.size());
209 void setAddr(
const IP6RawAddress &addr) {
210 std::memcpy(m_addr.sin6_addr.s6_addr, addr.begin(), addr.size());
228 m_addr.sin6_scope_id = to_integral(index);
238 return m_addr.sin6_flowinfo;
241 void setFlowInfo(
const uint32_t flowinfo) {
242 m_addr.sin6_flowinfo = flowinfo;
245 bool operator==(
const IP6Address &other)
const {
246 const auto cmp_res = std::memcmp(m_addr.sin6_addr.s6_addr,
247 other.m_addr.sin6_addr.s6_addr,
248 sizeof(m_addr.sin6_addr.s6_addr));
249 return cmp_res == 0 && port() == other.port();
252 bool operator!=(
const IP6Address &other)
const {
253 return !(*
this == other);
259 return reinterpret_cast<sockaddr*
>(&m_addr);
263 return reinterpret_cast<const sockaddr*
>(&m_addr);
267 m_addr.sin6_family = to_integral(
family());
A typesafe bit mask representation using class enums.
A 32-bit IPv4 address and 16 bit port number for use with SocketFamily::INET sockets.
sockaddr * basePtr() override
Returns a mutable pointer to the sockaddr* base structure.
const sockaddr * basePtr() const override
Returns a const pointer to the sockaddr* base structure.
size_t size() const override
Returns the size of the socket address in bytes found at basePtr().
SocketFamily family() const override
Returns the concrete SocketFamily for the implementation address type.
A 32-bit IPv4 binary address in network byte order.
A 128 bit IPv6 address and 16-bit port number plus some IPv6 specific extra fields.
const sockaddr * basePtr() const override
Returns a const pointer to the sockaddr* base structure.
sockaddr * basePtr() override
Returns a mutable pointer to the sockaddr* base structure.
SocketFamily family() const override
Returns the concrete SocketFamily for the implementation address type.
InterfaceIndex getScopeID() const
Returns the currently set scope ID.
void setScopeID(const InterfaceIndex index)
Set a new scope ID interface index.
size_t size() const override
Returns the size of the socket address in bytes found at basePtr().
uint32_t getFlowInfo() const
Returns the IPv6 flow info identifier.
Base class for both IPv4 and IPv6 addresses.
NameInfoFlag
Flags used with the getNameInfo() function.
void setIpFromString(const SysString str)
Sets the binary IP address from the given string.
A 16-bit IP port in network byte order.
Base class for all types of socket addresses.
void clear()
Clears the complete address structure.
An endianness aware unsigned integer.
InterfaceIndex
A network device interface index.
SocketFamily
A socket's family setting.
@ DGRAM
connection-less, unreliable, unordered with length limitation, keeps message boundaries.
Wrapper type around a C-style string for use with system APIs.