mirror of
https://github.com/facebookincubator/mvfst.git
synced 2025-04-18 17:24:03 +03:00
Summary: - as title Reviewed By: lnicco Differential Revision: D33513410 fbshipit-source-id: 282b6f512cf83b9abb7990402661135b658f7bd1
29 lines
613 B
C++
29 lines
613 B
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <quic/QuicConstants.h>
|
|
|
|
#include <cstdint>
|
|
|
|
namespace quic {
|
|
|
|
struct CachedServerTransportParameters {
|
|
uint64_t idleTimeout;
|
|
uint64_t maxRecvPacketSize;
|
|
uint64_t initialMaxData;
|
|
uint64_t initialMaxStreamDataBidiLocal;
|
|
uint64_t initialMaxStreamDataBidiRemote;
|
|
uint64_t initialMaxStreamDataUni;
|
|
uint64_t initialMaxStreamsBidi;
|
|
uint64_t initialMaxStreamsUni;
|
|
};
|
|
|
|
} // namespace quic
|