10#include <cosmos/net/IPAddress.hxx>
11#include <cosmos/net/types.hxx>
26 bool isV4()
const {
return this->
family() == SocketFamily::INET; }
28 bool isV6()
const {
return this->
family() == SocketFamily::INET6; }
42 return ai_canonname !=
nullptr;
55 std::optional<IP4Address>
asIP4()
const {
56 if (!ai_addr ||
family() != SocketFamily::INET)
59 return IP4Address{*
reinterpret_cast<sockaddr_in*
>(ai_addr)};
63 std::optional<IP6Address>
asIP6()
const {
64 if (!ai_addr ||
family() != SocketFamily::INET6)
67 return IP6Address{*
reinterpret_cast<sockaddr_in6*
>(ai_addr)};
76 return ai_next !=
nullptr;
81 return reinterpret_cast<const AddressInfo*
>(ai_next);
A single name resolution result entry as found in AddressInfoList.
const AddressInfo * next() const
Returns the next entry in the list.
SocketType type() const
Returns the SocketType this address is for.
bool hasCanonName() const
Returns whether a canonical name result is available via canonName().
SocketProtocol protocol() const
Returns the protocol this address is for.
std::optional< IP6Address > asIP6() const
Returns the IPv6 address stored in this entry, if applicable.
bool isV4() const
Returns whether this is a IPv4 address.
SocketFamily family() const
Returns the family this address is for.
bool hasNext() const
Returns whether another entry is available in the list.
SysString canonName() const
Returns the canonical name, if available, or an empty string.
std::optional< IP4Address > asIP4() const
Returns the IPv4 address stored in this entry, if applicable.
bool isV6() const
Returns whether this is a IPv6 address.
A 32-bit IPv4 address and 16 bit port number for use with SocketFamily::INET sockets.
A 128 bit IPv6 address and 16-bit port number plus some IPv6 specific extra fields.
SocketProtocol
Specific protocol to use on a socket.
SocketFamily
A socket's family setting.
SocketType
A socket's type setting.
Helper class to iterate over AddressInfoList.
Wrapper type around a C-style string for use with system APIs.