libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
AddressInfoList.cxx
1// cosmos
2#include <cosmos/error/ResolveError.hxx>
3#include <cosmos/net/AddressInfoList.hxx>
4
5namespace cosmos {
6
7void AddressInfoList::resolve(const SysString node, const SysString service) {
8 clear();
9
10 const auto res = ::getaddrinfo(
11 node.empty() ? nullptr : node.raw(),
12 service.empty() ? nullptr : service.raw(),
13 &m_hints, &m_addrs
14 );
15
16 if (res != 0) {
17 cosmos_throw(ResolveError(ResolveError::Code{res}));
18 }
19}
20
22 if (m_addrs) {
23 ::freeaddrinfo(m_addrs);
24 m_addrs = nullptr;
25 }
26}
27
28} // end ns
void clear()
Clear a previously stored resolve result.
void resolve(const SysString node, const SysString service)
Resolve addresses for the given node/service name combination.
Specialized error type for AddressInfoList resolve errors.
Code
Possible resolve error codes that can be stored in ResolveError.
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33