-
-
Notifications
You must be signed in to change notification settings - Fork 392
/
Copy pathhttp.hpp
30 lines (21 loc) · 772 Bytes
/
http.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
/**
* Copyright (c) 2020-2023 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_HTTP_H
#define RTC_IMPL_HTTP_H
#include "common.hpp"
#include <list>
#include <map>
namespace rtc::impl {
// Check the buffer contains the beginning of an HTTP request
bool isHttpRequest(const byte *buffer, size_t size);
// Parse an http message into lines
size_t parseHttpLines(const byte *buffer, size_t size, std::list<string> &lines);
// Parse headers of a http message
std::multimap<string, string> parseHttpHeaders(const std::list<string> &lines);
} // namespace rtc::impl
#endif