websocketpp icon indicating copy to clipboard operation
websocketpp copied to clipboard

C++ websocket client/server library

Results 207 websocketpp issues
Sort by recently updated
recently updated
newest added

as describe in [tutorials] int connect(std::string const & uri) { websocketpp::lib::error_code ec; client::connection_ptr con = m_endpoint.get_connection(uri, ec); if (ec) { std::cout set_fail_handler(websocketpp::lib::bind( &connection_metadata::on_fail, metadata_ptr, &m_endpoint, websocketpp::lib::placeholders::_1 )); con->set_close_handler(websocketpp::lib::bind( &connection_metadata::on_close, metadata_ptr,...

I have developed a websocketpp (version: 0.3.0-alpha4) client (later available version on github) for the websocket_rails server (https://github.com/websocket-rails/websocket-rails). I have used this client code as reference https://github.com/zaphoyd/websocketpp/blob/master/examples/telemetry_client/telemetry_client.cpp. Why the connection...

Started to give support for string_view. Maybe other person want to extend this support

Please include support for HTTP basic access authentication. The protocol OCPP (Open Charge Point Protocol, by the Open Charge Alliance) uses websockets for the transport layer. In the protocol's amendment...

While the non-blocking HTTP handler (#425) introduced in 0.6.0 addresses a number of the usability and performance issues with the HTTP handler, it does not address the case of needing...

Feature

the `pause_reading` intended for flow control maybe broken in asio mode. ``` client server ------1----> ok pause_reading ok ------2----> ok since the read is queued already ------3----> err, connection is...

Hello! I would like to verify TLS certificate. A convenient way of doing that seems to be `ctx->set_verify_callback(asio::ssl::rfc2818_verification("host.name"));`, but it needs a hostname passed to it. Handler for `set_tls_init_handler` has...

Hi, version is 0.8.1 ====================== I organize my manager Class like: ```cpp class WebSocketClient { public: using ws_connection_tls_ptr = std::shared_ptr; class Connection { private: ws_connection_tls_ptr ws_con_tls_ptr_; } private: using ws_client_tls...

how to enable Sec-WebSocket-Extensions: permessage-deflate in asio-tls client