-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathwebsocketserver.hpp
55 lines (39 loc) · 1.19 KB
/
websocketserver.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* Copyright (c) 2020-2021 Paul-Louis Ageneau
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#ifndef RTC_IMPL_WEBSOCKETSERVER_H
#define RTC_IMPL_WEBSOCKETSERVER_H
#if RTC_ENABLE_WEBSOCKET
#include "certificate.hpp"
#include "common.hpp"
#include "init.hpp"
#include "message.hpp"
#include "tcpserver.hpp"
#include "websocket.hpp"
#include "rtc/websocket.hpp"
#include "rtc/websocketserver.hpp"
#include <atomic>
#include <thread>
namespace rtc::impl {
struct WebSocketServer final : public std::enable_shared_from_this<WebSocketServer> {
using Configuration = rtc::WebSocketServer::Configuration;
WebSocketServer(Configuration config_);
~WebSocketServer();
void stop();
const Configuration config;
unique_ptr<TcpServer> tcpServer;
synchronized_callback<shared_ptr<rtc::WebSocket>> clientCallback;
private:
const init_token mInitToken = Init::Instance().token();
void runLoop();
certificate_ptr mCertificate;
std::thread mThread;
std::atomic<bool> mStopped;
};
} // namespace rtc::impl
#endif
#endif // RTC_IMPL_WEBSOCKET_H