-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathwshandshake.hpp
68 lines (51 loc) · 1.41 KB
/
wshandshake.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
/**
* 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_HANDSHAKE_H
#define RTC_IMPL_WS_HANDSHAKE_H
#include "common.hpp"
#if RTC_ENABLE_WEBSOCKET
#include <list>
#include <map>
#include <stdexcept>
#include <vector>
namespace rtc::impl {
class WsHandshake final {
public:
WsHandshake();
WsHandshake(string host, string path = "/", std::vector<string> protocols = {});
string host() const;
string path() const;
std::vector<string> protocols() const;
string generateHttpRequest();
string generateHttpResponse();
string generateHttpError(int responseCode = 400);
class Error : public std::runtime_error {
public:
explicit Error(const string &w);
};
class RequestError : public Error {
public:
explicit RequestError(const string &w, int responseCode = 400);
int responseCode() const;
private:
const int mResponseCode;
};
size_t parseHttpRequest(const byte *buffer, size_t size);
size_t parseHttpResponse(const byte *buffer, size_t size);
private:
static string generateKey();
static string computeAcceptKey(const string &key);
string mHost;
string mPath;
std::vector<string> mProtocols;
string mKey;
mutable std::mutex mMutex;
};
} // namespace rtc::impl
#endif
#endif