16struct fd_configuration
21struct send_fd_configuration : fd_configuration
24struct receive_fd_configuration : fd_configuration
28struct outbound_socket_configuration
34struct inbound_socket_configuration
40struct double_fd_configuration
42 std::optional<receive_fd_configuration> local;
43 std::optional<send_fd_configuration> remote;
46struct double_socket_configuration
48 std::optional<inbound_socket_configuration> local;
49 std::optional<outbound_socket_configuration> remote;
52struct serial_configuration
58 int character_size{8};
64 } flow_control{no_flow_control};
79struct ws_client_configuration
84struct ws_server_configuration
91struct unix_dgram_configuration : double_fd_configuration
95struct unix_stream_configuration : fd_configuration
99struct udp_configuration : double_socket_configuration
103struct tcp_client_configuration : outbound_socket_configuration
107struct udp_server_configuration : inbound_socket_configuration
110struct tcp_server_configuration : inbound_socket_configuration
113struct unix_dgram_server_configuration : receive_fd_configuration
116struct unix_stream_server_configuration : receive_fd_configuration