UCommon
|
Common socket class and address manipulation. More...
#include <ucommon/timers.h>
#include <ucommon/linked.h>
#include <ucommon/string.h>
#include <ucommon/typeref.h>
#include <unistd.h>
#include <sys/socket.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netdb.h>
#include <errno.h>
#include <stdio.h>
Go to the source code of this file.
Data Structures | |
struct | hostaddr_internet |
An object that holds ipv4 or ipv6 binary encoded host addresses. More... | |
struct | sockaddr_internet |
An object that can hold a ipv4 or ipv6 socket address. More... | |
class | ucommon::cidr |
A class to hold internet segment routing rules. More... | |
class | ucommon::linked_pointer< sockaddr_struct > |
Linked pointer for address lists. More... | |
class | ucommon::linked_sockaddr_operations |
Helper class for linked_pointer template. More... | |
class | ucommon::ListenSocket |
A bound socket used to listen for inbound socket connections. More... | |
class | ucommon::Socket |
A generic socket base class. More... | |
class | ucommon::Socket::address |
A generic socket address class. More... | |
class | ucommon::TCPServer |
A generic tcp server class. More... | |
Namespaces | |
ucommon | |
Common namespace for all ucommon objects. | |
Typedefs | |
typedef struct sockaddr | sockaddr_struct |
typedef struct sockaddr * | sockaddr_t |
typedef TCPServer | ucommon::tcpserv_t |
Functions | |
const struct sockaddr * | ucommon::addr (Socket::address &address) |
A convenience function to convert a socket address list into a socket address. More... | |
struct addrinfo * | ucommon::addrinfo (Socket::address &address) |
A convenience function to convert a socket address list into an addrinfo. More... | |
bool | ucommon::eq (const struct sockaddr *s1, const struct sockaddr *s2) |
Compare two socket addresses to see if equal. More... | |
bool | ucommon::eq (const struct sockaddr_storage *s1, const struct sockaddr_storage *s2) |
Compare two stored socket addresses to see if equal. More... | |
bool | ucommon::eq_host (const struct sockaddr *s1, const struct sockaddr *s2) |
Compare two host addresses to see if equal. More... | |
bool | ucommon::eq_subnet (const struct sockaddr *s1, const struct sockaddr *s2) |
String | ucommon::str (Socket &so, size_t size) |
Common socket class and address manipulation.
This offers a common socket base class that exposes socket functionality based on what the target platform supports. Support for multicast, IPV6 addressing, and manipulation of cidr policies are all supported here.
Definition in file socket.h.