mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
133 lines
4.1 KiB
C++
133 lines
4.1 KiB
C++
// Copyright 2016 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "net/third_party/http2/http2_structures.h"
|
|
|
|
#include <cstring> // For std::memcmp
|
|
#include <sstream>
|
|
|
|
#include "net/third_party/http2/platform/api/http2_string_utils.h"
|
|
|
|
namespace http2 {
|
|
|
|
// Http2FrameHeader:
|
|
|
|
bool Http2FrameHeader::IsProbableHttpResponse() const {
|
|
return (payload_length == 0x485454 && // "HTT"
|
|
static_cast<char>(type) == 'P' && // "P"
|
|
flags == '/'); // "/"
|
|
}
|
|
|
|
Http2String Http2FrameHeader::ToString() const {
|
|
return Http2StrCat("length=", payload_length,
|
|
", type=", Http2FrameTypeToString(type),
|
|
", flags=", FlagsToString(), ", stream=", stream_id);
|
|
}
|
|
|
|
Http2String Http2FrameHeader::FlagsToString() const {
|
|
return Http2FrameFlagsToString(type, flags);
|
|
}
|
|
|
|
bool operator==(const Http2FrameHeader& a, const Http2FrameHeader& b) {
|
|
return a.payload_length == b.payload_length && a.stream_id == b.stream_id &&
|
|
a.type == b.type && a.flags == b.flags;
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& out, const Http2FrameHeader& v) {
|
|
return out << v.ToString();
|
|
}
|
|
|
|
// Http2PriorityFields:
|
|
|
|
bool operator==(const Http2PriorityFields& a, const Http2PriorityFields& b) {
|
|
return a.stream_dependency == b.stream_dependency && a.weight == b.weight;
|
|
}
|
|
|
|
Http2String Http2PriorityFields::ToString() const {
|
|
std::stringstream ss;
|
|
ss << "E=" << (is_exclusive ? "true" : "false")
|
|
<< ", stream=" << stream_dependency
|
|
<< ", weight=" << static_cast<uint32_t>(weight);
|
|
return ss.str();
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& out, const Http2PriorityFields& v) {
|
|
return out << v.ToString();
|
|
}
|
|
|
|
// Http2RstStreamFields:
|
|
|
|
bool operator==(const Http2RstStreamFields& a, const Http2RstStreamFields& b) {
|
|
return a.error_code == b.error_code;
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& out, const Http2RstStreamFields& v) {
|
|
return out << "error_code=" << v.error_code;
|
|
}
|
|
|
|
// Http2SettingFields:
|
|
|
|
bool operator==(const Http2SettingFields& a, const Http2SettingFields& b) {
|
|
return a.parameter == b.parameter && a.value == b.value;
|
|
}
|
|
std::ostream& operator<<(std::ostream& out, const Http2SettingFields& v) {
|
|
return out << "parameter=" << v.parameter << ", value=" << v.value;
|
|
}
|
|
|
|
// Http2PushPromiseFields:
|
|
|
|
bool operator==(const Http2PushPromiseFields& a,
|
|
const Http2PushPromiseFields& b) {
|
|
return a.promised_stream_id == b.promised_stream_id;
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& out, const Http2PushPromiseFields& v) {
|
|
return out << "promised_stream_id=" << v.promised_stream_id;
|
|
}
|
|
|
|
// Http2PingFields:
|
|
|
|
bool operator==(const Http2PingFields& a, const Http2PingFields& b) {
|
|
static_assert((sizeof a.opaque_bytes) == Http2PingFields::EncodedSize(),
|
|
"Why not the same size?");
|
|
return 0 ==
|
|
std::memcmp(a.opaque_bytes, b.opaque_bytes, sizeof a.opaque_bytes);
|
|
}
|
|
|
|
std::ostream& operator<<(std::ostream& out, const Http2PingFields& v) {
|
|
return out << "opaque_bytes=0x"
|
|
<< Http2HexEncode(v.opaque_bytes, sizeof v.opaque_bytes);
|
|
}
|
|
|
|
// Http2GoAwayFields:
|
|
|
|
bool operator==(const Http2GoAwayFields& a, const Http2GoAwayFields& b) {
|
|
return a.last_stream_id == b.last_stream_id && a.error_code == b.error_code;
|
|
}
|
|
std::ostream& operator<<(std::ostream& out, const Http2GoAwayFields& v) {
|
|
return out << "last_stream_id=" << v.last_stream_id
|
|
<< ", error_code=" << v.error_code;
|
|
}
|
|
|
|
// Http2WindowUpdateFields:
|
|
|
|
bool operator==(const Http2WindowUpdateFields& a,
|
|
const Http2WindowUpdateFields& b) {
|
|
return a.window_size_increment == b.window_size_increment;
|
|
}
|
|
std::ostream& operator<<(std::ostream& out, const Http2WindowUpdateFields& v) {
|
|
return out << "window_size_increment=" << v.window_size_increment;
|
|
}
|
|
|
|
// Http2AltSvcFields:
|
|
|
|
bool operator==(const Http2AltSvcFields& a, const Http2AltSvcFields& b) {
|
|
return a.origin_length == b.origin_length;
|
|
}
|
|
std::ostream& operator<<(std::ostream& out, const Http2AltSvcFields& v) {
|
|
return out << "origin_length=" << v.origin_length;
|
|
}
|
|
|
|
} // namespace http2
|