kaycxx-http
HTTP client library
Loading...
Searching...
No Matches
header.hpp
1// SPDX-FileCopyrightText: 2026 Klaus Reimer <k@ailis.de>
2// SPDX-License-Identifier: MIT
3
4#pragma once
5
6#include <string>
7
8namespace kaycxx::http {
9
11struct header {
13 std::string name;
14
16 std::string value;
17};
18
19} // namespace kaycxx::http
HTTP header consisting of a name and value.
Definition header.hpp:11
std::string name
Header name.
Definition header.hpp:13
std::string value
Header value.
Definition header.hpp:16