blob: 5862f1ead151328894cdab7f5c6c588fc08272fb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
#include <string>
namespace DB
{
struct HTTPHeaderEntry
{
std::string name;
std::string value;
HTTPHeaderEntry(const std::string & name_, const std::string & value_) : name(name_), value(value_) {}
inline bool operator==(const HTTPHeaderEntry & other) const { return name == other.name && value == other.value; }
};
using HTTPHeaderEntries = std::vector<HTTPHeaderEntry>;
}
|