5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/error/ResolveError.hxx>
7#include <cosmos/error/RuntimeError.hxx>
8#include <cosmos/net/IPAddress.hxx>
18 return &
reinterpret_cast<const sockaddr_in*
>(
basePtr())->sin_addr;
20 return &
reinterpret_cast<const sockaddr_in6*
>(
basePtr())->sin6_addr;
29 to_integral(this->
family()),
33 if (ret.size() > 512) {
34 cosmos_throw (
ApiError(
"inet_ntop()"));
36 ret.resize(ret.size() * 2);
39 ret.resize(std::strlen(ret.data()));
44 const auto res = ::inet_pton(
45 to_integral(this->
family()),
50 cosmos_throw (
ApiError(
"inet_pton()"));
51 }
else if (res == 0) {
52 cosmos_throw (
RuntimeError(
"inet_pton: bad IP address string"));
79 host->resize(MAX_HOSTNAME);
83 service->resize(MAX_SERVICE);
86 const auto res = ::getnameinfo(
88 host ? host->data() :
nullptr, host ? host->size() : 0,
89 service ? service->data() :
nullptr, service ? service->size() : 0,
97 host->resize(std::strlen(host->c_str()));
101 service->resize(std::strlen(service->c_str()));
Specialized exception type used when system APIs fail.
A typesafe bit mask representation using class enums.
Base class for both IPv4 and IPv6 addresses.
void * ipAddrPtr()
returns a pointer to the in_addr or in6_addr.
void setIpFromString(const SysString str)
Sets the binary IP address from the given string.
std::string getServiceInfo(const NameInfoFlags flags={})
Reverse resolve only the port portion into a service name and return it.
std::string ipAsString() const
Returns a textual representation of the currently set IP.
void getNameInfo(std::string &host, std::string &service, const NameInfoFlags flags={})
Reverse resolve the binary IP address and port into DNS and service names.
std::string getHostInfo(const NameInfoFlags flags={})
Reverse resolve only the IP address portion into a DNS name and return it.
Code
Possible resolve error codes that can be stored in ResolveError.
Exception type for generic runtime errors.
virtual SocketFamily family() const =0
Returns the concrete SocketFamily for the implementation address type.
virtual size_t size() const =0
Returns the size of the socket address in bytes found at basePtr().
virtual sockaddr * basePtr()=0
Returns a mutable pointer to the sockaddr* base structure.
Wrapper type around a C-style string for use with system APIs.