|
| seastar::experimental::websocket::exception::exception (std::string_view msg) |
|
virtual const char * | seastar::experimental::websocket::exception::what () const noexcept |
|
| seastar::experimental::websocket::frame_header::frame_header (const char *input) |
|
uint64_t | seastar::experimental::websocket::frame_header::get_rest_of_header_length () |
|
uint8_t | seastar::experimental::websocket::frame_header::get_fin () |
|
uint8_t | seastar::experimental::websocket::frame_header::get_rsv1 () |
|
uint8_t | seastar::experimental::websocket::frame_header::get_rsv2 () |
|
uint8_t | seastar::experimental::websocket::frame_header::get_rsv3 () |
|
uint8_t | seastar::experimental::websocket::frame_header::get_opcode () |
|
uint8_t | seastar::experimental::websocket::frame_header::get_masked () |
|
uint8_t | seastar::experimental::websocket::frame_header::get_length () |
|
bool | seastar::experimental::websocket::frame_header::is_opcode_known () |
|
future< consumption_result_t > | seastar::experimental::websocket::websocket_parser::operator() (temporary_buffer< char > data) |
|
bool | seastar::experimental::websocket::websocket_parser::is_valid () |
|
bool | seastar::experimental::websocket::websocket_parser::eof () |
|
opcodes | seastar::experimental::websocket::websocket_parser::opcode () const |
|
buff_t | seastar::experimental::websocket::websocket_parser::result () |
|
| seastar::experimental::websocket::connection::connection_source_impl::connection_source_impl (queue< buff_t > *data) |
|
virtual future< buff_t > | seastar::experimental::websocket::connection::connection_source_impl::get () override |
|
virtual future | seastar::experimental::websocket::connection::connection_source_impl::close () override |
|
| seastar::experimental::websocket::connection::connection_sink_impl::connection_sink_impl (queue< buff_t > *data) |
|
virtual future | seastar::experimental::websocket::connection::connection_sink_impl::put (net::packet d) override |
|
size_t | seastar::experimental::websocket::connection::connection_sink_impl::buffer_size () const noexcept override |
|
virtual future | seastar::experimental::websocket::connection::connection_sink_impl::close () override |
|
| seastar::experimental::websocket::connection::connection (server &server, connected_socket &&fd) |
|
future | seastar::experimental::websocket::connection::process () |
| serve WebSocket protocol on a connection
|
|
void | seastar::experimental::websocket::connection::shutdown_input () |
| close the socket
|
|
future | seastar::experimental::websocket::connection::close (bool send_close=true) |
|
future | seastar::experimental::websocket::connection::read_loop () |
|
future | seastar::experimental::websocket::connection::read_one () |
|
future | seastar::experimental::websocket::connection::read_http_upgrade_request () |
|
future | seastar::experimental::websocket::connection::response_loop () |
|
void | seastar::experimental::websocket::connection::on_new_connection () |
|
future | seastar::experimental::websocket::connection::send_data (opcodes opcode, temporary_buffer< char > &&buff) |
| Packs buff in websocket frame and sends it to the client.
|
|
void | seastar::experimental::websocket::server::listen (socket_address addr) |
| listen for a WebSocket connection on given address More...
|
|
void | seastar::experimental::websocket::server::listen (socket_address addr, listen_options lo) |
| listen for a WebSocket connection on given address with custom options More...
|
|
future | seastar::experimental::websocket::server::stop () |
|
bool | seastar::experimental::websocket::server::is_handler_registered (std::string const &name) |
|
void | seastar::experimental::websocket::server::register_handler (std::string &&name, handler_t handler) |
|
void | seastar::experimental::websocket::server::accept (server_socket &listener) |
|
future< stop_iteration > | seastar::experimental::websocket::server::accept_one (server_socket &listener) |
|