libcosmos
Linux C++ System Programming Library
|
Base class for both IPv4 and IPv6 addresses. More...
#include <IPAddress.hxx>
Public Types | |
enum class | NameInfoFlag : int { NAME_REQUIRED = NI_NAMEREQD , DGRAM = NI_DGRAM , NO_FQDN = NI_NOFQDN , NUMERIC_HOST = NI_NUMERICHOST , NUMERIC_SERVICE = NI_NUMERICSERV , IDN = NI_IDN } |
Flags used with the getNameInfo() function. More... | |
using | NameInfoFlags = BitMask<NameInfoFlag> |
Collection of NameInfoFlag used with the getNameInfo() function. | |
Public Member Functions | |
bool | isV4 () const |
bool | isV6 () const |
std::string | ipAsString () const |
Returns a textual representation of the currently set IP. | |
void | setIpFromString (const SysString str) |
Sets the binary IP address from the given string. | |
void | getNameInfo (std::string &host, std::string &service, const NameInfoFlags flags={}) |
Reverse resolve the binary IP address and port into DNS and service names. | |
std::string | getHostInfo (const NameInfoFlags flags={}) |
Reverse resolve only the IP address portion into a DNS name and return it. | |
std::string | getServiceInfo (const NameInfoFlags flags={}) |
Reverse resolve only the port portion into a service name and return it. | |
![]() | |
virtual SocketFamily | family () const =0 |
Returns the concrete SocketFamily for the implementation address type. | |
virtual size_t | size () const =0 |
Returns the size of the socket address in bytes found at basePtr(). | |
virtual size_t | maxSize () const |
Returns the maximum number of bytes the socket address can hold. | |
Protected Member Functions | |
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) |
![]() | |
virtual sockaddr * | basePtr ()=0 |
Returns a mutable pointer to the sockaddr* base structure. | |
virtual const sockaddr * | basePtr () const =0 |
Returns a const pointer to the sockaddr* base structure. | |
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. | |
Base class for both IPv4 and IPv6 addresses.
This base class for IP address types offers some common logic to convert IP address string to binary and vice versa.
Definition at line 25 of file IPAddress.hxx.
Collection of NameInfoFlag used with the getNameInfo() function.
Definition at line 50 of file IPAddress.hxx.
|
strong |
Flags used with the getNameInfo() function.
Definition at line 30 of file IPAddress.hxx.
std::string cosmos::IPAddressBase::getHostInfo | ( | const NameInfoFlags | flags = {} | ) |
Reverse resolve only the IP address portion into a DNS name and return it.
This does the same as getNameInfo() but only reverse resolves the hostname, not the service.
Definition at line 60 of file IPAddress.cxx.
void cosmos::IPAddressBase::getNameInfo | ( | std::string & | host, |
std::string & | service, | ||
const NameInfoFlags | flags = {} ) |
Reverse resolve the binary IP address and port into DNS and service names.
host
and service
will be filled with the textual representation of the currently stored binary IP address and port number. The given flags influence the behaviour of this reverse lookup.
On error conditions a cosmos::ResolveError is thrown.
Definition at line 56 of file IPAddress.cxx.
|
protected |
Definition at line 76 of file IPAddress.cxx.
std::string cosmos::IPAddressBase::getServiceInfo | ( | const NameInfoFlags | flags = {} | ) |
Reverse resolve only the port portion into a service name and return it.
This does the same as getNameInfo() but only reverse resolves the port, not the hostname.
Definition at line 68 of file IPAddress.cxx.
|
protected |
returns a pointer to the in_addr or in6_addr.
Definition at line 12 of file IPAddress.cxx.
|
protected |
returns a pointer to the in_addr or in6_addr.
Definition at line 16 of file IPAddress.cxx.
std::string cosmos::IPAddressBase::ipAsString | ( | ) | const |
Returns a textual representation of the currently set IP.
Definition at line 24 of file IPAddress.cxx.
|
inline |
Definition at line 54 of file IPAddress.hxx.
|
inline |
Definition at line 55 of file IPAddress.hxx.
void cosmos::IPAddressBase::setIpFromString | ( | const SysString | str | ) |
Sets the binary IP address from the given string.
Definition at line 43 of file IPAddress.cxx.