![]() |
XTL
0.1
eXtended Template Library
|
general purpose socket communication More...
Go to the source code of this file.
Data Structures | |
class | xtd::socket::bindable_socket< _SuperT > |
Server side binding behavior. More... | |
class | xtd::socket::connectable_socket< _SuperT > |
Client side connecting behavior. More... | |
class | xtd::socket::exception |
Represents an socket error. More... | |
class | xtd::socket::ip_options< _SuperT > |
IP based socket properties. More... | |
class | xtd::socket::ipv4address |
IPv4 address wrapper around sockaddr_in. More... | |
class | xtd::socket::ipv6address |
IPv6 address wrapper around sockaddr_in6. More... | |
class | xtd::socket::listening_socket< _SuperT > |
Server side listening behavior. More... | |
class | xtd::socket::polling_socket< _SuperT > |
Polling behavior policy. More... | |
class | xtd::socket::selectable_socket< _SuperT > |
Async IO select behavior. More... | |
class | xtd::socket::serializer< typename > |
Serializes data on a socket. More... | |
class | xtd::socket::socket_base< _AddressT, _SocketT, _Protocol > |
Base class of the various socket specializations Hierarchy generation TMP pattern to create all the socket object types with the various behavioral policies. More... | |
class | xtd::socket::socket_options< _SuperT > |
Socket properties. More... | |
class | xtd::socket::tcp_options< _SuperT > |
TCP based socket properties. More... | |
class | xtd::socket::udp_options< _SuperT > |
UDP socket properties. More... | |
Namespaces | |
xtd | |
The main namespace of the XTL library. | |
xtd::socket | |
General purpose socket communication. | |
Typedefs | |
using | xtd::socket::ipv4_tcp_stream = socket_base< ipv4address, socket_type::stream, socket_protocol::tcp, socket_options, ip_options, tcp_options, connectable_socket, bindable_socket, listening_socket, selectable_socket > |
General purpose IPV4 client and server socket type. | |
using | xtd::socket::ipv4_udp_socket = socket_base< ipv4address, socket_type::datagram, socket_protocol::udp, socket_options, ip_options, udp_options > |
General purpose UDP socket type. | |
Enumerations | |
enum | xtd::socket::socket_protocol { xtd::socket::socket_protocol::ip = IPPROTO_IP, xtd::socket::socket_protocol::icmp = IPPROTO_ICMP, xtd::socket::socket_protocol::tcp = IPPROTO_TCP, xtd::socket::socket_protocol::udp = IPPROTO_UDP, xtd::socket::socket_protocol::ipv6 = IPPROTO_IPV6 } |
IP based protocols. More... | |
enum | xtd::socket::socket_type { xtd::socket::socket_type::stream = SOCK_STREAM, xtd::socket::socket_type::datagram = SOCK_DGRAM, xtd::socket::socket_type::raw = SOCK_RAW } |
socket communication styles More... | |
general purpose socket communication
Definition in file socket.hpp.