mirror of
https://github.com/nghttp2/nghttp2.git
synced 2025-12-06 18:18:52 +08:00
asio: Remove unused struct header
This commit is contained in:
@@ -52,16 +52,6 @@ namespace nghttp2 {
|
||||
|
||||
namespace asio_http2 {
|
||||
|
||||
struct header {
|
||||
header() : sensitive(false) {}
|
||||
header(std::string name, std::string value, bool sensitive = false)
|
||||
: name(std::move(name)), value(std::move(value)), sensitive(sensitive) {}
|
||||
|
||||
std::string name;
|
||||
std::string value;
|
||||
bool sensitive;
|
||||
};
|
||||
|
||||
struct header_value {
|
||||
std::string value;
|
||||
bool sensitive;
|
||||
|
||||
Reference in New Issue
Block a user