libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
AddressHints.hxx
1#pragma once
2
3// Linux
4#include <netdb.h>
5
6// C++
7#include <cstring>
8
9// cosmos
10#include <cosmos/BitMask.hxx>
11#include <cosmos/net/types.hxx>
12#include <cosmos/utils.hxx>
13
14namespace cosmos {
15
17
28 public addrinfo {
29public: // types
30
32 enum class Flag : int {
34 V4_MAPPED = AI_V4MAPPED,
36 ALL = AI_ALL,
38 ADDR_CONFIG = AI_ADDRCONFIG,
40 NUMERIC_HOST = AI_NUMERICHOST,
42 PASSIVE = AI_PASSIVE,
44 NUMERIC_SERVICE = AI_NUMERICSERV,
46 CANON_NAME = AI_CANONNAME,
48 IDN = AI_IDN,
50 CANON_IDN = AI_CANONIDN,
51#if 0 /* these are marked as deprecated */
52 IDN_ALLOW_UNASSIGNED = AI_IDN_ALLOW_UNASSIGNED,
53 IDN_USE_STD3_ASCII_RULES = AI_IDN_USE_STD3_ASCII_RULES
54#endif
55 };
56
59
60public: // functions
61
63
69 std::memset(this, 0, sizeof(*this));
71 }
72
74
78 void setFamily(const SocketFamily family) {
79 ai_family = to_integral(family);
80 }
81
83
86 void setType(const SocketType type) {
87 ai_socktype = to_integral(type);
88 }
89
91
95 void setProtocol(const SocketProtocol protocol) {
96 ai_protocol = to_integral(protocol);
97 }
98
100 Flags flags() const {
101 return Flags{ai_flags};
102 }
103
105 void setFlags(const Flags flags) {
106 ai_flags = flags.raw();
107 }
108};
109
110} // end ns
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.
Definition BitMask.hxx:19
EnumBaseType raw() const
Returns the raw bitfield integer.
Definition BitMask.hxx:56
SocketProtocol
Specific protocol to use on a socket.
Definition types.hxx:71
SocketFamily
A socket's family setting.
Definition types.hxx:37
SocketType
A socket's type setting.
Definition types.hxx:52