-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathwstransport.hpp
91 lines (71 loc) · 2.03 KB
/
wstransport.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/**
* 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_WS_TRANSPORT_H
#define RTC_IMPL_WS_TRANSPORT_H
#include "common.hpp"
#include "transport.hpp"
#include "configuration.hpp"
#include "wshandshake.hpp"
#if RTC_ENABLE_WEBSOCKET
#include <atomic>
namespace rtc::impl {
class HttpProxyTransport;
class TcpTransport;
class TlsTransport;
class WsTransport final : public Transport, public std::enable_shared_from_this<WsTransport> {
public:
using LowerTransport =
variant<shared_ptr<TcpTransport>, shared_ptr<HttpProxyTransport>, shared_ptr<TlsTransport>>;
WsTransport(LowerTransport lower, shared_ptr<WsHandshake> handshake,
const WebSocketConfiguration &config, message_callback recvCallback,
state_callback stateCallback);
~WsTransport();
void start() override;
void stop() override;
bool send(message_ptr message) override;
void close();
void incoming(message_ptr message) override;
bool isClient() const { return mIsClient; }
private:
enum Opcode : uint8_t {
CONTINUATION = 0,
TEXT_FRAME = 1,
BINARY_FRAME = 2,
CLOSE = 8,
PING = 9,
PONG = 10,
};
struct Frame {
Opcode opcode = BINARY_FRAME;
byte *payload = nullptr;
size_t length = 0;
bool fin = true;
bool mask = true;
};
bool sendHttpRequest();
bool sendHttpError(int code);
bool sendHttpResponse();
size_t parseFrame(byte *buffer, size_t size, Frame &frame);
void recvFrame(const Frame &frame);
bool sendFrame(const Frame &frame);
void addOutstandingPing();
const shared_ptr<WsHandshake> mHandshake;
const bool mIsClient;
const size_t mMaxMessageSize;
const int mMaxOutstandingPings;
binary mBuffer;
binary mPartial;
Opcode mPartialOpcode;
size_t mIgnoreLength = 0;
std::mutex mSendMutex;
int mOutstandingPings = 0;
std::atomic<bool> mCloseSent = false;
};
} // namespace rtc::impl
#endif
#endif