mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
41 lines
1.5 KiB
C
41 lines
1.5 KiB
C
|
// Copyright 2013 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.
|
||
|
|
||
|
#ifndef NET_QUIC_QUIC_HTTP_UTILS_H_
|
||
|
#define NET_QUIC_QUIC_HTTP_UTILS_H_
|
||
|
|
||
|
#include "base/values.h"
|
||
|
#include "net/base/net_export.h"
|
||
|
#include "net/base/request_priority.h"
|
||
|
#include "net/log/net_log_capture_mode.h"
|
||
|
#include "net/third_party/quic/core/quic_packets.h"
|
||
|
#include "net/third_party/spdy/core/spdy_header_block.h"
|
||
|
#include "net/third_party/spdy/core/spdy_protocol.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
NET_EXPORT_PRIVATE spdy::SpdyPriority ConvertRequestPriorityToQuicPriority(
|
||
|
RequestPriority priority);
|
||
|
|
||
|
NET_EXPORT_PRIVATE RequestPriority
|
||
|
ConvertQuicPriorityToRequestPriority(spdy::SpdyPriority priority);
|
||
|
|
||
|
// Converts a spdy::SpdyHeaderBlock and priority into NetLog event parameters.
|
||
|
NET_EXPORT std::unique_ptr<base::Value> QuicRequestNetLogCallback(
|
||
|
quic::QuicStreamId stream_id,
|
||
|
const spdy::SpdyHeaderBlock* headers,
|
||
|
spdy::SpdyPriority priority,
|
||
|
NetLogCaptureMode capture_mode);
|
||
|
|
||
|
// Parses |alt_svc_versions| into a quic::QuicTransportVersionVector and removes
|
||
|
// all entries that aren't found in |supported_versions|.
|
||
|
NET_EXPORT quic::QuicTransportVersionVector FilterSupportedAltSvcVersions(
|
||
|
const spdy::SpdyAltSvcWireFormat::AlternativeService& quic_alt_svc,
|
||
|
const quic::QuicTransportVersionVector& supported_versions,
|
||
|
bool support_ietf_format_quic_altsvc);
|
||
|
|
||
|
} // namespace net
|
||
|
|
||
|
#endif // NET_QUIC_QUIC_HTTP_UTILS_H_
|