A 32-bit IPv4 address and 16 bit port number for use with SocketFamily::INET sockets.
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 32-bit IPv4 address and 16 bit port number for use with SocketFamily::INET sockets.
Definition at line 100 of file IPAddress.hxx.
◆ IP4Address() [1/4]
cosmos::IP4Address::IP4Address |
( |
| ) |
|
|
inline |
Definition at line 108 of file IPAddress.hxx.
108 {
110 }
void clear()
Clears the complete address structure.
◆ IP4Address() [2/4]
cosmos::IP4Address::IP4Address |
( |
const sockaddr_in & | raw | ) |
|
|
inlineexplicit |
◆ IP4Address() [3/4]
Definition at line 116 of file IPAddress.hxx.
116 {0}) {
117 setFamily();
118 setAddr(addr);
119 setPort(port);
120 }
◆ IP4Address() [4/4]
Definition at line 122 of file IPAddress.hxx.
122 {0}) {
123 setFamily();
125 setPort(port);
126 }
void setIpFromString(const SysString str)
Sets the binary IP address from the given string.
◆ addr()
Definition at line 139 of file IPAddress.hxx.
139{ return IP4RawAddress{net::RawNetInt32{m_addr.sin_addr.s_addr}}; }
◆ basePtr() [1/2]
const sockaddr * cosmos::IP4Address::basePtr |
( |
| ) |
const |
|
inlineoverrideprotectedvirtual |
Returns a const pointer to the sockaddr*
base structure.
Implements cosmos::SocketAddress.
Definition at line 156 of file IPAddress.hxx.
156 {
157 return reinterpret_cast<const sockaddr*>(&m_addr);
158 }
◆ basePtr() [2/2]
sockaddr * cosmos::IP4Address::basePtr |
( |
| ) |
|
|
inlineoverrideprotectedvirtual |
Returns a mutable pointer to the sockaddr*
base structure.
Implements cosmos::SocketAddress.
Definition at line 152 of file IPAddress.hxx.
152 {
153 return reinterpret_cast<sockaddr*>(&m_addr);
154 }
◆ family()
◆ operator!=()
bool cosmos::IP4Address::operator!= |
( |
const IP4Address & | other | ) |
const |
|
inline |
Definition at line 146 of file IPAddress.hxx.
146 {
147 return !(*this == other);
148 }
◆ operator==()
bool cosmos::IP4Address::operator== |
( |
const IP4Address & | other | ) |
const |
|
inline |
Definition at line 142 of file IPAddress.hxx.
142 {
143 return addr() == other.addr() && port() == other.port();
144 }
◆ port()
Definition at line 136 of file IPAddress.hxx.
136{ return net::NetInt16{net::RawNetInt16{m_addr.sin_port}}; }
◆ setAddr()
Definition at line 140 of file IPAddress.hxx.
140{ m_addr.sin_addr.s_addr = to_integral(addr.raw()); }
◆ setFamily()
void cosmos::IP4Address::setFamily |
( |
| ) |
|
|
inlineprotected |
Definition at line 160 of file IPAddress.hxx.
160 {
161 m_addr.sin_family = to_integral(
family());
162 }
SocketFamily family() const override
Returns the concrete SocketFamily for the implementation address type.
◆ setPort()
Definition at line 137 of file IPAddress.hxx.
137{ m_addr.sin_port = to_integral(port.raw()); }
◆ size()
size_t cosmos::IP4Address::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 132 of file IPAddress.hxx.
132 {
133 return sizeof(m_addr);
134 }
◆ FAMILY
◆ m_addr
sockaddr_in cosmos::IP4Address::m_addr |
|
protected |
The documentation for this class was generated from the following file: