oatpp-websocket icon indicating copy to clipboard operation
oatpp-websocket copied to clipboard

oatpp-websocket submodule.

Results 13 oatpp-websocket issues
Sort by recently updated
recently updated
newest added

I have a strange error for one of the users which I cannot debug as I can't reproduce it locally. Basically, the WS connection started normally and can receive messages...

I am trying to implement a one-way websocket endpoint that sends a never-ending stream of frames from the server to the client as soon as the connection is open and...

Hi, I face a similar issue as [this one for oatpp main project](https://github.com/oatpp/oatpp/issues/476) with websocket : when shutting down the server after websocket usage, existing connection handler tasks are not...

For server performance reasons. I need to implement only a specified number of client connections. Here is my `WsInstanceListener::onAfterCreate()` code: ```c++ std::atomic WsInstanceListener::sockets_(0); std::mutex WsInstanceListener::socket_mutex_; void WsInstanceListener::onAfterCreate(const oatpp::websocket::WebSocket& socket, const...

In file: oatpp-websocket/Handshaker.hpp # Question First of all I want to thank you for this amazing framework. I have a small question regarding a use case of oat++ websocket. in...

Our old server applies the subprotocol parameter on websocket. Now we need to use oatpp in the server. How to apply the subprotocol parameter?

Minor convenience method to send DTO's via WebSocket using a given or the default object mapper.

My WebSocket client is frequently receiving frames with unknown frame opcodes: `[oatpp::web::protocol::websocket::AsyncWebSocket::handleFrameAsync(){HandleFrameCoroutine}]: Unknown frame`. I would like to be able to inspect these frame opcodes to know what the opcodes...

enhancement

Hello there! I am having an issue where i use both REST and websockets in my server's API. However (hence the title), only the initial HTTP GET route of the...

Hi, I am using oatpp-websocket example from [https://github.com/oatpp/example-websocket/blob/master/](https://github.com/oatpp/example-websocket/blob/master/). I have one use case, the server need to decline new connection when there exists two client. I tried to change the...