|
AsyncBerkeley
Asynchronous Berkeley sockets. Simple.
|
Defines the socket_dialog struct.
More...
#include "io/detail/concepts.hpp"#include "io/socket/socket_handle.hpp"#include <memory>#include "detail/async_operations.hpp"#include "impl/socket_dialog_impl.hpp"Go to the source code of this file.
Classes | |
| struct | io::socket::socket_dialog< Mux > |
| A dialog that facilitates asynchronous operations on the socket by the executor. More... | |
Namespaces | |
| namespace | io |
The io namespace contains all the functions and classes for the I/O library. | |
| namespace | io::execution |
| Provides high-level interfaces for executors and completion triggers. | |
| namespace | io::socket |
The io::socket namespace provides a cross-platform abstraction for socket-level I/O operations. | |
Functions | |
| template<Multiplexer Mux> | |
| auto | io::socket::operator<=> (const socket_dialog< Mux > &lhs, const socket_dialog< Mux > &rhs) -> std::strong_ordering |
Compares two socket_dialog objects. | |
| template<Multiplexer Mux> | |
| auto | io::socket::operator== (const socket_dialog< Mux > &lhs, const socket_dialog< Mux > &rhs) -> bool |
Checks for equality between two socket_dialog objects. | |
| template<Multiplexer Mux> | |
| auto | io::socket::operator<=> (const socket_dialog< Mux > &lhs, const socket_handle &rhs) -> std::strong_ordering |
Compares a socket_dialog and a socket_handle. | |
| template<Multiplexer Mux> | |
| auto | io::socket::operator== (const socket_dialog< Mux > &lhs, const socket_handle &rhs) -> bool |
Checks for equality between a socket_dialog and a socket_handle. | |
| template<Multiplexer Mux> | |
| auto | io::socket::operator<=> (const socket_dialog< Mux > &lhs, native_socket_type rhs) -> std::strong_ordering |
Compares a socket_dialog and a native_socket. | |
| template<Multiplexer Mux> | |
| auto | io::socket::operator== (const socket_dialog< Mux > &lhs, native_socket_type rhs) -> bool |
Checks for equality between a socket_dialog and a native_socket. | |
Defines the socket_dialog struct.