libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
AddressInfo.hxx
1#pragma once
2
3// C++
4#include <optional>
5
6// Linux
7#include <netdb.h>
8
9// cosmos
10#include <cosmos/net/IPAddress.hxx>
11#include <cosmos/net/types.hxx>
12
13namespace cosmos {
14
17 protected addrinfo {
18public: // functions
19
22 return SocketFamily{ai_family};
23 }
24
26 bool isV4() const { return this->family() == SocketFamily::INET; }
28 bool isV6() const { return this->family() == SocketFamily::INET6; }
29
31 SocketType type() const {
32 return SocketType{ai_socktype};
33 }
34
37 return SocketProtocol{ai_protocol};
38 }
39
41 bool hasCanonName() const {
42 return ai_canonname != nullptr;
43 }
44
47 if (ai_canonname) {
48 return SysString{ai_canonname};
49 } else {
50 return {};
51 }
52 }
53
55 std::optional<IP4Address> asIP4() const {
56 if (!ai_addr || family() != SocketFamily::INET)
57 return std::nullopt;
58
59 return IP4Address{*reinterpret_cast<sockaddr_in*>(ai_addr)};
60 }
61
63 std::optional<IP6Address> asIP6() const {
64 if (!ai_addr || family() != SocketFamily::INET6)
65 return std::nullopt;
66
67 return IP6Address{*reinterpret_cast<sockaddr_in6*>(ai_addr)};
68 }
69
70protected: // data
71
72 friend struct AddressInfoIterator;
73
75 bool hasNext() const {
76 return ai_next != nullptr;
77 }
78
80 const AddressInfo* next() const {
81 return reinterpret_cast<const AddressInfo*>(ai_next);
82 }
83
84 // this should only be constructed for special purposes, otherwise this
85 // type is just used for casting libc allocated struct addrinfo into.
86 AddressInfo() = delete;
87};
88
89} // end ns
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.
Definition types.hxx:71
SocketFamily
A socket's family setting.
Definition types.hxx:37
SocketType
A socket's type setting.
Definition types.hxx:52
Helper class to iterate over AddressInfoList.
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33