mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
30 lines
678 B
C++
30 lines
678 B
C++
#ifndef WF_TEST_UTILS_WS_SERVER_HPP
|
|
#define WF_TEST_UTILS_WS_SERVER_HPP
|
|
|
|
#include <libwebsockets.h>
|
|
#include <jansson.h>
|
|
|
|
namespace webfuse_test
|
|
{
|
|
|
|
class WebsocketServer
|
|
{
|
|
WebsocketServer(WebsocketServer const &) = delete;
|
|
WebsocketServer & operator=(WebsocketServer const &) = delete;
|
|
public:
|
|
explicit WebsocketServer(int port);
|
|
WebsocketServer(int port, struct lws_protocols * additionalProtocols, std::size_t additionalProtocolsCount);
|
|
~WebsocketServer();
|
|
struct lws_context * getContext();
|
|
void waitForConnection();
|
|
void sendMessage(json_t * message);
|
|
json_t * receiveMessage();
|
|
private:
|
|
class Private;
|
|
Private * d;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|