38 explicit async_result_socket(
std::any async_state) : async_state_(async_state) {}
39 std::any async_state()
const noexcept
override {
return async_state_;}
40 std::shared_mutex& async_mutex()
override {
return async_mutex_;}
41 bool completed_synchronously()
const noexcept
override {
return false;}
42 bool is_completed()
const noexcept
override {
return is_completed_;};
45 bool is_completed_ =
false;
46 std::shared_mutex async_mutex_;
48 std::exception_ptr exception_;
51 class async_result_accept_socket :
public async_result_socket {
53 explicit async_result_accept_socket(
std::any async_state) : async_result_socket(async_state) {}
57 class async_result_accept_tcp_client :
public async_result_socket {
59 explicit async_result_accept_tcp_client(
std::any async_state) : async_result_socket(async_state) {}
92 friend std::ostream& operator <<(std::ostream& os,
const tcp_listener& tl) noexcept {
return os << tl.
to_string();}
93 bool operator==(
const tcp_listener&
s)
const {
return data_ == s.data_;};
94 bool operator!=(
const tcp_listener& s)
const {
return !operator==(s);};
236 void start(
size_t backlog);
254 bool active()
const noexcept;
259 std::shared_ptr<data> data_;
Implements the Berkeley sockets interface.
Definition: socket.h:68
virtual xtd::ustring to_string() const noexcept
Returns a sxd::ustring that represents the current object.
Provides an Internet Protocol (IP) address.
Definition: ip_address.h:34
Represents the status of an asynchronous operation.
Definition: iasync_result.h:21
Identifies a network address. This is an abstract class.
Definition: end_point.h:24
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
Enables a socket to be bound for exclusive access.
Represents a network endpoint as an IP address and a port number.
Definition: ip_end_point.h:20
delegate< void(std::shared_ptr< xtd::iasync_result > ar)> async_callback
References a method to be called when a corresponding asynchronous operation completes.
Definition: async_callback.h:18
socket_error
Defines error codes for the xtd::net::sockets::socket class.
Definition: socket_error.h:27
Provides client connections for TCP network services.
Definition: tcp_client.h:44
Indicates that all styles except allow_binary_specifier, allow_octal_specifier and allow_hex_specifie...
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes...
Definition: object.h:30
Contains xtd::net::sockets::tcp_client class.
Listens for connections from TCP network clients.
Definition: tcp_listener.h:35