#include <sockaddr.h>
|
|
| SockAddr (const SockAddr &o) |
| |
|
| SockAddr (SockAddr &&o) |
| |
| | SockAddr (const sockaddr *sa, socklen_t length) |
| |
|
| SockAddr (const sockaddr *sa) |
| |
| | SockAddr (const sockaddr_storage &ss, socklen_t len) |
| |
|
bool | operator< (const SockAddr &o) const |
| |
|
bool | equals (const SockAddr &o) const |
| |
|
SockAddr & | operator= (const SockAddr &o) |
| |
|
SockAddr & | operator= (SockAddr &&o) |
| |
|
std::string | toString () const |
| |
| sa_family_t | getFamily () const |
| |
| void | setFamily (sa_family_t af) |
| |
| in_port_t | getPort () const |
| |
| void | setPort (in_port_t p) |
| |
| socklen_t | getLength () const |
| |
| | operator bool () const noexcept |
| |
| const sockaddr * | get () const |
| |
| sockaddr * | get () |
| |
|
const sockaddr_in & | getIPv4 () const |
| |
|
const sockaddr_in6 & | getIPv6 () const |
| |
|
sockaddr_in & | getIPv4 () |
| |
|
sockaddr_in6 & | getIPv6 () |
| |
| bool | isLoopback () const |
| |
| bool | isPrivate () const |
| |
|
bool | isUnspecified () const |
| |
|
bool | isMappedIPv4 () const |
| |
|
SockAddr | getMappedIPv4 () const |
| |
|
|
static std::vector< SockAddr > | resolve (const std::string &host, const std::string &service={}) |
| |
A Socket Address (sockaddr*), with abstraction for IPv4, IPv6 address families.
Definition at line 55 of file sockaddr.h.
| dht::SockAddr::SockAddr |
( |
const sockaddr * |
sa, |
|
|
socklen_t |
length |
|
) |
| |
|
inline |
Build from existing address.
Definition at line 68 of file sockaddr.h.
| dht::SockAddr::SockAddr |
( |
const sockaddr_storage & |
ss, |
|
|
socklen_t |
len |
|
) |
| |
|
inline |
Build from an existing sockaddr_storage structure.
Definition at line 89 of file sockaddr.h.
| const sockaddr* dht::SockAddr::get |
( |
| ) |
const |
|
inline |
Returns the address to the managed sockaddr structure. The accessible length is returned by getLength().
Definition at line 195 of file sockaddr.h.
| sockaddr* dht::SockAddr::get |
( |
| ) |
|
|
inline |
Returns the address to the managed sockaddr structure. The accessible length is returned by getLength().
Definition at line 201 of file sockaddr.h.
| sa_family_t dht::SockAddr::getFamily |
( |
| ) |
const |
|
inline |
Returns the address family or AF_UNSPEC if the address is not set.
Definition at line 121 of file sockaddr.h.
| socklen_t dht::SockAddr::getLength |
( |
| ) |
const |
|
inline |
Returns the accessible byte length at the pointer returned by get(). If zero, get() returns null.
Definition at line 182 of file sockaddr.h.
| in_port_t dht::SockAddr::getPort |
( |
| ) |
const |
|
inline |
Retreive the port (in host byte order) or 0 if the address is not of a supported family.
Definition at line 153 of file sockaddr.h.
| bool dht::SockAddr::isLoopback |
( |
| ) |
const |
Return true if address is a loopback IP address.
| bool dht::SockAddr::isPrivate |
( |
| ) |
const |
Return true if address is not a public IP address.
| dht::SockAddr::operator bool |
( |
| ) |
const |
|
inlineexplicitnoexcept |
An address is defined to be true if its length is not zero.
Definition at line 187 of file sockaddr.h.
| void dht::SockAddr::setFamily |
( |
sa_family_t |
af | ) |
|
|
inline |
Resize the managed structure to the appropriate size (if needed), in which case the sockaddr structure is cleared to zero, and set the address family field (sa_family).
Definition at line 128 of file sockaddr.h.
| void dht::SockAddr::setPort |
( |
in_port_t |
p | ) |
|
|
inline |
Set the port. The address must be of a supported family.
- Parameters
-
| p | The port in host byte order. |
Definition at line 167 of file sockaddr.h.
The documentation for this class was generated from the following file:
- /tmp/slackrepo/SBo/slackrepo.6I59mk/build_opendht/opendht-1.7.4/include/opendht/sockaddr.h