A 128 bit IPv6 address and 16-bit port number plus some IPv6 specific extra fields.
More...
#include <IPAddress.hxx>
|
sockaddr * | basePtr () override |
| Returns a mutable pointer to the sockaddr* base structure.
|
|
const sockaddr * | basePtr () const override |
| Returns a const pointer to the sockaddr* base structure.
|
|
void | setFamily () |
|
void * | ipAddrPtr () |
| returns a pointer to the in_addr or in6_addr.
|
|
const void * | ipAddrPtr () const |
| returns a pointer to the in_addr or in6_addr.
|
|
void | getNameInfo (std::string *host, std::string *service, const NameInfoFlags flags) |
|
void | clear () |
| Clears the complete address structure.
|
|
virtual void | update (size_t new_length) |
| Update the address structure after it has been filled in by the kernel.
|
|
A 128 bit IPv6 address and 16-bit port number plus some IPv6 specific extra fields.
Definition at line 170 of file IPAddress.hxx.
◆ IP6Address() [1/3]
cosmos::IP6Address::IP6Address |
( |
| ) |
|
|
inline |
Definition at line 178 of file IPAddress.hxx.
178 {
180 }
void clear()
Clears the complete address structure.
◆ IP6Address() [2/3]
cosmos::IP6Address::IP6Address |
( |
const sockaddr_in6 & | raw | ) |
|
|
inlineexplicit |
◆ IP6Address() [3/3]
Definition at line 186 of file IPAddress.hxx.
186 {0}) {
188 setAddr(addr);
189 setPort(port);
190 }
◆ addr()
Definition at line 203 of file IPAddress.hxx.
203 {
204 IP6RawAddress ret;
205 std::memcpy(ret.data(), m_addr.sin6_addr.s6_addr, ret.size());
206 return ret;
207 }
◆ basePtr() [1/2]
const sockaddr * cosmos::IP6Address::basePtr |
( |
| ) |
const |
|
inlineoverrideprotectedvirtual |
Returns a const pointer to the sockaddr*
base structure.
Implements cosmos::SocketAddress.
Definition at line 262 of file IPAddress.hxx.
262 {
263 return reinterpret_cast<const sockaddr*>(&m_addr);
264 }
◆ basePtr() [2/2]
sockaddr * cosmos::IP6Address::basePtr |
( |
| ) |
|
|
inlineoverrideprotectedvirtual |
Returns a mutable pointer to the sockaddr*
base structure.
Implements cosmos::SocketAddress.
Definition at line 258 of file IPAddress.hxx.
258 {
259 return reinterpret_cast<sockaddr*>(&m_addr);
260 }
◆ family()
◆ getFlowInfo()
uint32_t cosmos::IP6Address::getFlowInfo |
( |
| ) |
const |
|
inline |
Returns the IPv6 flow info identifier.
This value can be set to zero to disable its use. Otherwise it has a protocol specific meaning that is interpreted at routers e.g. to prioritize certain traffic types.
Definition at line 237 of file IPAddress.hxx.
237 {
238 return m_addr.sin6_flowinfo;
239 }
◆ getScopeID()
Returns the currently set scope ID.
This ID allows to link a local address to a local network device via an InterfaceIndex. It is only supported for link-local addresses.
Definition at line 219 of file IPAddress.hxx.
219 {
220
221
222
224 }
InterfaceIndex
A network device interface index.
◆ operator!=()
bool cosmos::IP6Address::operator!= |
( |
const IP6Address & | other | ) |
const |
|
inline |
Definition at line 252 of file IPAddress.hxx.
252 {
253 return !(*this == other);
254 }
◆ operator==()
bool cosmos::IP6Address::operator== |
( |
const IP6Address & | other | ) |
const |
|
inline |
Definition at line 245 of file IPAddress.hxx.
245 {
246 const auto cmp_res = std::memcmp(m_addr.sin6_addr.s6_addr,
247 other.m_addr.sin6_addr.s6_addr,
248 sizeof(m_addr.sin6_addr.s6_addr));
249 return cmp_res == 0 && port() == other.port();
250 }
◆ port()
IPPort cosmos::IP6Address::port |
( |
| ) |
const |
|
inline |
Definition at line 200 of file IPAddress.hxx.
200{ return IPPort{net::RawNetInt16{m_addr.sin6_port}}; }
◆ setAddr()
Definition at line 209 of file IPAddress.hxx.
209 {
210 std::memcpy(m_addr.sin6_addr.s6_addr, addr.begin(), addr.size());
211 }
◆ setFamily()
void cosmos::IP6Address::setFamily |
( |
| ) |
|
|
inlineprotected |
Definition at line 266 of file IPAddress.hxx.
266 {
267 m_addr.sin6_family = to_integral(
family());
268 }
SocketFamily family() const override
Returns the concrete SocketFamily for the implementation address type.
◆ setFlowInfo()
void cosmos::IP6Address::setFlowInfo |
( |
const uint32_t | flowinfo | ) |
|
|
inline |
Definition at line 241 of file IPAddress.hxx.
241 {
242 m_addr.sin6_flowinfo = flowinfo;
243 }
◆ setPort()
void cosmos::IP6Address::setPort |
( |
const IPPort | port | ) |
|
|
inline |
Definition at line 201 of file IPAddress.hxx.
201{ m_addr.sin6_port = to_integral(port.raw()); }
◆ setScopeID()
Set a new scope ID interface index.
Definition at line 227 of file IPAddress.hxx.
227 {
228 m_addr.sin6_scope_id = to_integral(index);
229 }
◆ size()
size_t cosmos::IP6Address::size |
( |
| ) |
const |
|
inlineoverridevirtual |
Returns the size of the socket address in bytes found at basePtr().
This returns the number of bytes currently used in the socket address. Some implementations may have dynamic sizes in which case this can differ from maxSize().
Implements cosmos::SocketAddress.
Definition at line 196 of file IPAddress.hxx.
196 {
197 return sizeof(m_addr);
198 }
◆ FAMILY
◆ m_addr
sockaddr_in6 cosmos::IP6Address::m_addr |
|
protected |
The documentation for this class was generated from the following file: