10#include <cosmos/BitMask.hxx>
11#include <cosmos/net/types.hxx>
12#include <cosmos/utils.hxx>
52 IDN_ALLOW_UNASSIGNED = AI_IDN_ALLOW_UNASSIGNED,
53 IDN_USE_STD3_ASCII_RULES = AI_IDN_USE_STD3_ASCII_RULES
69 std::memset(
this, 0,
sizeof(*
this));
79 ai_family = to_integral(family);
87 ai_socktype = to_integral(type);
96 ai_protocol = to_integral(protocol);
101 return Flags{ai_flags};
Hints specification for queries done with AddressInfoList.
AddressHints()
Create an empty AddressHints structure with default Flags.
void setProtocol(const SocketProtocol protocol)
Restrict the SocketProtocol to resolve for.
Flag
Flags used to influence the result list.
@ NUMERIC_SERVICE
If service name is specified then it must be a numerical string, no resolve is performed.
@ V4_MAPPED
If the query is for IPv6 and there are no matches then return IPv4-mapped IPv6 addresses.
@ ALL
If combined with V4_MAPPED, then return both IPv6 and IPv4-mapped IPv6 addresses.
@ NUMERIC_HOST
The node name must be a numerical network address, no name lookup is made.
@ IDN
Convert the provided node name into IDN format, if necessary.
@ ADDR_CONFIG
Only return a result for a SocketFamily if the system has a least one (IPv4/IPv6) address configured ...
@ CANON_NAME
Returns the official name of the host in the first AddressInfo result in the result list.
@ PASSIVE
If no node name is provided then return an address suitable for listening on (wildcard address is ret...
@ CANON_IDN
If combined with CANON_NAME then a possible IDN encoding will be converted to the current locale in r...
void setType(const SocketType type)
Restrict the SocketType to resolve for.
void setFamily(const SocketFamily family)
Restrict the SocketFamily to resolve for.
Flags flags() const
Return the currently set Flags.
void setFlags(const Flags flags)
Set new flags influencing the resolve behaviour.
A typesafe bit mask representation using class enums.
EnumBaseType raw() const
Returns the raw bitfield integer.
SocketProtocol
Specific protocol to use on a socket.
SocketFamily
A socket's family setting.
SocketType
A socket's type setting.