libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
AddressInfoList.hxx
1#pragma once
2
3// cosmos
4#include <cosmos/dso_export.h>
5#include <cosmos/net/AddressHints.hxx>
6#include <cosmos/net/AddressInfo.hxx>
7#include <cosmos/net/AddressInfoIterator.hxx>
8
9namespace cosmos {
10
12
29class COSMOS_API AddressInfoList {
30public: // functions
31
33 clear();
34 }
35
37
64 void resolve(const SysString node, const SysString service);
65
67 void clear();
68
70
74 auto& hints() {
75 return m_hints;
76 }
77
79
82 void setHints(const AddressHints &hints) {
83 m_hints = hints;
84 }
85
87
91 bool valid() const {
92 return m_addrs != nullptr;
93 }
94
95 AddressInfoIterator begin() const {
96 return AddressInfoIterator{reinterpret_cast<const AddressInfo*>(m_addrs)};
97 }
98
99 AddressInfoIterator end() const {
100 return AddressInfoIterator{nullptr};
101 }
102
103protected: // data
104
105 AddressHints m_hints;
106 struct addrinfo *m_addrs = nullptr;
107};
108
109} // end ns
Hints specification for queries done with AddressInfoList.
Resolve DNS names and provide the resulting list of AddressInfos.
auto & hints()
Access the stored AddressHints to modify the resolve behaviour.
void setHints(const AddressHints &hints)
Set a new AddressHints structure for modifying the resolve behaviour.
bool valid() const
Returns whether currently a valid resolve result is stored.
A single name resolution result entry as found in AddressInfoList.
Helper class to iterate over AddressInfoList.
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33