mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
102 lines
4.3 KiB
C
102 lines
4.3 KiB
C
|
// Copyright (c) 2017 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_QUARTC_QUARTC_FACTORY_INTERFACE_H_
|
||
|
#define NET_QUIC_QUARTC_QUARTC_FACTORY_INTERFACE_H_
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
#include "net/quic/platform/api/quic_export.h"
|
||
|
#include "net/quic/quartc/quartc_clock_interface.h"
|
||
|
#include "net/quic/quartc/quartc_session_interface.h"
|
||
|
#include "net/quic/quartc/quartc_task_runner_interface.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
// Algorithm to use for congestion control.
|
||
|
enum class QuartcCongestionControl {
|
||
|
kDefault, // Use an arbitrary algorithm chosen by QUIC.
|
||
|
kBBR, // Use BBR.
|
||
|
};
|
||
|
|
||
|
// Options that control the BBR algorithm.
|
||
|
enum class QuartcBbrOptions {
|
||
|
kSlowerStartup, // Once a loss is encountered in STARTUP,
|
||
|
// switches startup to a 1.5x pacing gain.
|
||
|
kFullyDrainQueue, // Fully drains the queue once per cycle.
|
||
|
kReduceProbeRtt, // Probe RTT reduces CWND to 0.75 * BDP instead of 4
|
||
|
// packets.
|
||
|
kSkipProbeRtt, // Skip Probe RTT and extend the existing min_rtt if a
|
||
|
// recent min_rtt is within 12.5% of the current min_rtt.
|
||
|
kSkipProbeRttAggressively, // Skip ProbeRTT and extend the existing min_rtt
|
||
|
// as long as you've been app limited at least
|
||
|
// once.
|
||
|
kFillUpLinkDuringProbing, // Sends probing retransmissions whenever we
|
||
|
// become application limited.
|
||
|
};
|
||
|
|
||
|
// Used to create instances for Quartc objects such as QuartcSession.
|
||
|
class QUIC_EXPORT_PRIVATE QuartcFactoryInterface {
|
||
|
public:
|
||
|
virtual ~QuartcFactoryInterface() {}
|
||
|
|
||
|
struct QuartcSessionConfig {
|
||
|
QuartcSessionConfig();
|
||
|
~QuartcSessionConfig();
|
||
|
|
||
|
// When using Quartc, there are two endpoints. The QuartcSession on one
|
||
|
// endpoint must act as a server and the one on the other side must act as a
|
||
|
// client.
|
||
|
bool is_server = false;
|
||
|
// This is only needed when is_server = false. It must be unique
|
||
|
// for each endpoint the local endpoint may communicate with. For example,
|
||
|
// a WebRTC client could use the remote endpoint's crypto fingerprint
|
||
|
std::string unique_remote_server_id;
|
||
|
// The way the QuicConnection will send and receive packets, like a virtual
|
||
|
// UDP socket. For WebRTC, this will typically be an IceTransport.
|
||
|
QuartcSessionInterface::PacketTransport* packet_transport = nullptr;
|
||
|
// The maximum size of the packet can be written with the packet writer.
|
||
|
// 1200 bytes by default.
|
||
|
uint64_t max_packet_size = 1200;
|
||
|
// Algorithm to use for congestion control. By default, uses an arbitrary
|
||
|
// congestion control algorithm chosen by QUIC.
|
||
|
QuartcCongestionControl congestion_control =
|
||
|
QuartcCongestionControl::kDefault;
|
||
|
// Options to control the BBR algorithm. In case the congestion control is
|
||
|
// set to anything but BBR, these options are ignored.
|
||
|
std::vector<QuartcBbrOptions> bbr_options;
|
||
|
// Timeouts for the crypto handshake. Set them to higher values to
|
||
|
// prevent closing the session before it started on a slow network.
|
||
|
// Zero entries are ignored and QUIC defaults are used in that case.
|
||
|
uint32_t max_idle_time_before_crypto_handshake_secs = 0;
|
||
|
uint32_t max_time_before_crypto_handshake_secs = 0;
|
||
|
};
|
||
|
|
||
|
virtual std::unique_ptr<QuartcSessionInterface> CreateQuartcSession(
|
||
|
const QuartcSessionConfig& quartc_config) = 0;
|
||
|
};
|
||
|
|
||
|
// The configuration for creating a QuartcFactory.
|
||
|
struct QuartcFactoryConfig {
|
||
|
// The task runner used by the QuartcAlarm. Implemented by the Quartc user
|
||
|
// with different mechanism. For example in WebRTC, it is implemented with
|
||
|
// rtc::Thread. Owned by the user, and needs to stay alive for as long
|
||
|
// as the QuartcFactory exists.
|
||
|
QuartcTaskRunnerInterface* task_runner = nullptr;
|
||
|
// The clock used by QuartcAlarms. Implemented by the Quartc user. Owned by
|
||
|
// the user, and needs to stay alive for as long as the QuartcFactory exists.
|
||
|
QuartcClockInterface* clock = nullptr;
|
||
|
};
|
||
|
|
||
|
// Creates a new instance of QuartcFactoryInterface.
|
||
|
std::unique_ptr<QuartcFactoryInterface> CreateQuartcFactory(
|
||
|
const QuartcFactoryConfig& factory_config);
|
||
|
|
||
|
} // namespace net
|
||
|
|
||
|
#endif // NET_QUIC_QUARTC_QUARTC_FACTORY_INTERFACE_H_
|