mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
67 lines
2.0 KiB
C++
67 lines
2.0 KiB
C++
// Copyright (c) 2012 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_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_
|
|
#define NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_
|
|
|
|
#include <memory>
|
|
#include <vector>
|
|
|
|
#include "base/macros.h"
|
|
#include "net/quic/core/quic_framer.h"
|
|
#include "net/quic/core/quic_packets.h"
|
|
|
|
namespace net {
|
|
|
|
struct QuicAckFrame;
|
|
|
|
namespace test {
|
|
|
|
class SimpleFramerVisitor;
|
|
|
|
// Peer to make public a number of otherwise private QuicFramer methods.
|
|
class SimpleQuicFramer {
|
|
public:
|
|
SimpleQuicFramer();
|
|
explicit SimpleQuicFramer(
|
|
const QuicTransportVersionVector& supported_versions);
|
|
SimpleQuicFramer(const QuicTransportVersionVector& supported_versions,
|
|
Perspective perspective);
|
|
~SimpleQuicFramer();
|
|
|
|
bool ProcessPacket(const QuicEncryptedPacket& packet);
|
|
void Reset();
|
|
|
|
const QuicPacketHeader& header() const;
|
|
size_t num_frames() const;
|
|
const std::vector<QuicAckFrame>& ack_frames() const;
|
|
const std::vector<QuicConnectionCloseFrame>& connection_close_frames() const;
|
|
const std::vector<QuicStopWaitingFrame>& stop_waiting_frames() const;
|
|
const std::vector<QuicPingFrame>& ping_frames() const;
|
|
const std::vector<QuicWindowUpdateFrame>& window_update_frames() const;
|
|
const std::vector<QuicGoAwayFrame>& goaway_frames() const;
|
|
const std::vector<QuicRstStreamFrame>& rst_stream_frames() const;
|
|
const std::vector<std::unique_ptr<QuicStreamFrame>>& stream_frames() const;
|
|
const std::vector<QuicPaddingFrame>& padding_frames() const;
|
|
const QuicVersionNegotiationPacket* version_negotiation_packet() const;
|
|
|
|
QuicFramer* framer();
|
|
|
|
void SetSupportedTransportVersions(
|
|
const QuicTransportVersionVector& versions) {
|
|
framer_.SetSupportedTransportVersions(versions);
|
|
}
|
|
|
|
private:
|
|
QuicFramer framer_;
|
|
std::unique_ptr<SimpleFramerVisitor> visitor_;
|
|
DISALLOW_COPY_AND_ASSIGN(SimpleQuicFramer);
|
|
};
|
|
|
|
} // namespace test
|
|
|
|
} // namespace net
|
|
|
|
#endif // NET_QUIC_TEST_TOOLS_SIMPLE_QUIC_FRAMER_H_
|