mirror of
https://github.com/facebookincubator/mvfst.git
synced 2025-08-09 20:42:44 +03:00
Summary: For protocols like HTTP/3, lacking an actual priority scheme, it's a good idea to write control streams before non control streams. Implement this in a round robin fashion in the same way we do for other streams. Reviewed By: afrind Differential Revision: D18236010 fbshipit-source-id: faee9af7fff7736679bfea262ac18d677a7cbf78
519 lines
19 KiB
C++
519 lines
19 KiB
C++
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
|
|
#include "quic/state/QuicStreamManager.h"
|
|
|
|
#include <quic/state/QuicStreamUtilities.h>
|
|
|
|
namespace quic {
|
|
|
|
/**
|
|
* Updates the head of line blocked time for the stream. This should be called
|
|
* on new data received or even data being read from the stream.
|
|
* There are 2 cases when you can become head of line blocked:
|
|
* 1. You're not previously holb. You receive new data which cannot be read.
|
|
* 2. You are not head of line blocked. You read data from the stream, but you
|
|
* discover a hole.
|
|
*
|
|
* You can become not head of line blocked if the following conditions happen:
|
|
* 1. You were head of line blocked, and you receive something that allows you
|
|
* to read from the stream.
|
|
* 2. You were head of line blocked, but you receive a reset from the peer.
|
|
*/
|
|
static void updateHolBlockedTime(QuicStreamState& stream) {
|
|
// No data has arrived, or the current stream offset matches
|
|
// the stream offset that has been read so far. Stream is not HOL-blocked
|
|
// (although may be blocked on missing data).
|
|
// If there is no more data to read, or if the current read offset
|
|
// matches the read offset in the front queue, a potential HOL block
|
|
// becomes unblocked.
|
|
if (stream.readBuffer.empty() ||
|
|
(stream.currentReadOffset == stream.readBuffer.front().offset)) {
|
|
// If we were previously HOL blocked, we're not any more.
|
|
// Update the total HOLB time and reset the latch.
|
|
if (stream.lastHolbTime) {
|
|
stream.totalHolbTime +=
|
|
std::chrono::duration_cast<std::chrono::microseconds>(
|
|
Clock::now() - *stream.lastHolbTime);
|
|
stream.lastHolbTime = folly::none;
|
|
}
|
|
return;
|
|
}
|
|
|
|
// No HOL unblocking event has occured. If we are already HOL bloked,
|
|
// we remain HOL blocked.
|
|
if (stream.lastHolbTime) {
|
|
return;
|
|
}
|
|
// If we were previously not HOL blocked, we are now.
|
|
stream.lastHolbTime = Clock::now();
|
|
stream.holbCount++;
|
|
}
|
|
|
|
static bool isStreamUnopened(
|
|
StreamId streamId,
|
|
StreamId nextAcceptableStreamId) {
|
|
return streamId >= nextAcceptableStreamId;
|
|
}
|
|
|
|
// If a stream is un-opened, this automatically creates all lower streams.
|
|
// Returns false if the stream is closed or already opened.
|
|
static LocalErrorCode openStreamIfNotClosed(
|
|
StreamId streamId,
|
|
std::deque<StreamId>& openStreams,
|
|
StreamId& nextAcceptableStreamId,
|
|
StreamId maxStreamId) {
|
|
if (streamId < nextAcceptableStreamId) {
|
|
return LocalErrorCode::CREATING_EXISTING_STREAM;
|
|
}
|
|
if (streamId >= maxStreamId) {
|
|
return LocalErrorCode::STREAM_LIMIT_EXCEEDED;
|
|
}
|
|
|
|
// Since this is a deque just insert at the back and sort after. The swapping
|
|
// has lower constant time operations than inserting into the proper sorted
|
|
// positions.
|
|
// TODO We can do better than this. We probably don't want a deque.
|
|
StreamId start = nextAcceptableStreamId;
|
|
while (start <= streamId) {
|
|
openStreams.push_back(start);
|
|
start += detail::kStreamIncrement;
|
|
}
|
|
std::sort(openStreams.begin(), openStreams.end());
|
|
|
|
if (streamId >= nextAcceptableStreamId) {
|
|
nextAcceptableStreamId = streamId + detail::kStreamIncrement;
|
|
}
|
|
return LocalErrorCode::NO_ERROR;
|
|
}
|
|
|
|
QuicStreamState* QuicStreamManager::findStream(StreamId streamId) {
|
|
auto lookup = streams_.find(streamId);
|
|
if (lookup == streams_.end()) {
|
|
return nullptr;
|
|
} else {
|
|
return &lookup->second;
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::setMaxLocalBidirectionalStreams(
|
|
uint64_t maxStreams,
|
|
bool force) {
|
|
if (maxStreams > kMaxMaxStreams) {
|
|
throw QuicTransportException(
|
|
"Attempt to set maxStreams beyond the max allowed.",
|
|
TransportErrorCode::STREAM_LIMIT_ERROR);
|
|
}
|
|
StreamId maxStreamId = maxStreams * detail::kStreamIncrement +
|
|
initialLocalBidirectionalStreamId_;
|
|
if (force || maxStreamId > maxLocalBidirectionalStreamId_) {
|
|
maxLocalBidirectionalStreamId_ = maxStreamId;
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::setMaxLocalUnidirectionalStreams(
|
|
uint64_t maxStreams,
|
|
bool force) {
|
|
if (maxStreams > kMaxMaxStreams) {
|
|
throw QuicTransportException(
|
|
"Attempt to set maxStreams beyond the max allowed.",
|
|
TransportErrorCode::STREAM_LIMIT_ERROR);
|
|
}
|
|
StreamId maxStreamId = maxStreams * detail::kStreamIncrement +
|
|
initialLocalUnidirectionalStreamId_;
|
|
if (force || maxStreamId > maxLocalUnidirectionalStreamId_) {
|
|
maxLocalUnidirectionalStreamId_ = maxStreamId;
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::setMaxRemoteBidirectionalStreams(uint64_t maxStreams) {
|
|
setMaxRemoteBidirectionalStreamsInternal(maxStreams, false);
|
|
}
|
|
|
|
void QuicStreamManager::setMaxRemoteUnidirectionalStreams(uint64_t maxStreams) {
|
|
setMaxRemoteUnidirectionalStreamsInternal(maxStreams, false);
|
|
}
|
|
|
|
void QuicStreamManager::setMaxRemoteBidirectionalStreamsInternal(
|
|
uint64_t maxStreams,
|
|
bool force) {
|
|
if (maxStreams > kMaxMaxStreams) {
|
|
throw QuicTransportException(
|
|
"Attempt to set maxStreams beyond the max allowed.",
|
|
TransportErrorCode::STREAM_LIMIT_ERROR);
|
|
}
|
|
StreamId maxStreamId = maxStreams * detail::kStreamIncrement +
|
|
initialRemoteBidirectionalStreamId_;
|
|
if (force || maxStreamId > maxRemoteBidirectionalStreamId_) {
|
|
maxRemoteBidirectionalStreamId_ = maxStreamId;
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::setMaxRemoteUnidirectionalStreamsInternal(
|
|
uint64_t maxStreams,
|
|
bool force) {
|
|
if (maxStreams > kMaxMaxStreams) {
|
|
throw QuicTransportException(
|
|
"Attempt to set maxStreams beyond the max allowed.",
|
|
TransportErrorCode::STREAM_LIMIT_ERROR);
|
|
}
|
|
StreamId maxStreamId = maxStreams * detail::kStreamIncrement +
|
|
initialRemoteUnidirectionalStreamId_;
|
|
if (force || maxStreamId > maxRemoteUnidirectionalStreamId_) {
|
|
maxRemoteUnidirectionalStreamId_ = maxStreamId;
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::refreshTransportSettings(
|
|
const TransportSettings& settings) {
|
|
transportSettings_ = &settings;
|
|
setMaxRemoteBidirectionalStreamsInternal(
|
|
transportSettings_->advertisedInitialMaxStreamsBidi, true);
|
|
setMaxRemoteUnidirectionalStreamsInternal(
|
|
transportSettings_->advertisedInitialMaxStreamsUni, true);
|
|
}
|
|
|
|
// We create local streams lazily. If a local stream was created
|
|
// but not allocated yet, this will allocate a stream.
|
|
// This will return nullptr if a stream is closed or un-opened.
|
|
QuicStreamState* FOLLY_NULLABLE
|
|
QuicStreamManager::getOrCreateOpenedLocalStream(StreamId streamId) {
|
|
auto streamIdx = std::lower_bound(
|
|
openLocalStreams_.begin(), openLocalStreams_.end(), streamId);
|
|
if (streamIdx != openLocalStreams_.end() && *streamIdx == streamId) {
|
|
// Open a lazily created stream.
|
|
auto it = streams_.emplace(
|
|
std::piecewise_construct,
|
|
std::forward_as_tuple(streamId),
|
|
std::forward_as_tuple(streamId, conn_));
|
|
QUIC_STATS(conn_.infoCallback, onNewQuicStream);
|
|
return &it.first->second;
|
|
}
|
|
return nullptr;
|
|
}
|
|
|
|
QuicStreamState* QuicStreamManager::getStream(StreamId streamId) {
|
|
if (isRemoteStream(nodeType_, streamId)) {
|
|
auto stream = getOrCreatePeerStream(streamId);
|
|
updateAppIdleState();
|
|
return stream;
|
|
}
|
|
auto it = streams_.find(streamId);
|
|
if (it != streams_.end()) {
|
|
return &it->second;
|
|
}
|
|
auto stream = getOrCreateOpenedLocalStream(streamId);
|
|
auto nextAcceptableStreamId = isUnidirectionalStream(streamId)
|
|
? nextAcceptableLocalUnidirectionalStreamId_
|
|
: nextAcceptableLocalBidirectionalStreamId_;
|
|
if (!stream && isStreamUnopened(streamId, nextAcceptableStreamId)) {
|
|
throw QuicTransportException(
|
|
"Trying to get unopened local stream",
|
|
TransportErrorCode::STREAM_STATE_ERROR);
|
|
}
|
|
updateAppIdleState();
|
|
return stream;
|
|
}
|
|
|
|
folly::Expected<QuicStreamState*, LocalErrorCode>
|
|
QuicStreamManager::createNextBidirectionalStream() {
|
|
auto stream = createStream(nextBidirectionalStreamId_);
|
|
nextBidirectionalStreamId_ += detail::kStreamIncrement;
|
|
return stream;
|
|
}
|
|
|
|
folly::Expected<QuicStreamState*, LocalErrorCode>
|
|
QuicStreamManager::createNextUnidirectionalStream() {
|
|
auto stream = createStream(nextUnidirectionalStreamId_);
|
|
nextUnidirectionalStreamId_ += detail::kStreamIncrement;
|
|
return stream;
|
|
}
|
|
|
|
QuicStreamState* FOLLY_NULLABLE
|
|
QuicStreamManager::getOrCreatePeerStream(StreamId streamId) {
|
|
// This function maintains 4 invariants:
|
|
// 1. Streams below nextAcceptableStreamId are streams that have been
|
|
// seen before. Everything above can be opened.
|
|
// 2. Streams that have been seen before, always have an entry in
|
|
// openPeerStreams. If a stream below nextAcceptableStreamId does not
|
|
// have an entry in openPeerStreams, then it is closed.
|
|
// 3. openPeerStreams is ordered by streamId.
|
|
// 4. If streamId n is open all streams < n will be seen.
|
|
// It also tries to create the entire state for a stream in a lazy manner.
|
|
|
|
// Validate the stream id is correct
|
|
if (nodeType_ == QuicNodeType::Client && isClientStream(streamId)) {
|
|
throw QuicTransportException(
|
|
"Attempted getting client peer stream on client",
|
|
TransportErrorCode::STREAM_STATE_ERROR);
|
|
} else if (nodeType_ == QuicNodeType::Server && isServerStream(streamId)) {
|
|
throw QuicTransportException(
|
|
"Attempted getting server peer stream on server",
|
|
TransportErrorCode::STREAM_STATE_ERROR);
|
|
} else if (!isClientStream(streamId) && !isServerStream(streamId)) {
|
|
throw QuicTransportException(
|
|
"Invalid stream", TransportErrorCode::STREAM_STATE_ERROR);
|
|
}
|
|
|
|
auto peerStream = streams_.find(streamId);
|
|
if (peerStream != streams_.end()) {
|
|
return &peerStream->second;
|
|
}
|
|
auto& openPeerStreams = isUnidirectionalStream(streamId)
|
|
? openUnidirectionalPeerStreams_
|
|
: openBidirectionalPeerStreams_;
|
|
auto streamIdx = std::lower_bound(
|
|
openPeerStreams.begin(), openPeerStreams.end(), streamId);
|
|
if (streamIdx != openPeerStreams.end() && *streamIdx == streamId) {
|
|
// Stream was already open, create the state for it lazily.
|
|
auto it = streams_.emplace(
|
|
std::piecewise_construct,
|
|
std::forward_as_tuple(streamId),
|
|
std::forward_as_tuple(streamId, conn_));
|
|
QUIC_STATS(conn_.infoCallback, onNewQuicStream);
|
|
return &it.first->second;
|
|
}
|
|
|
|
auto previousPeerStreams = folly::copy(openPeerStreams);
|
|
auto& nextAcceptableStreamId = isUnidirectionalStream(streamId)
|
|
? nextAcceptablePeerUnidirectionalStreamId_
|
|
: nextAcceptablePeerBidirectionalStreamId_;
|
|
auto maxStreamId = isUnidirectionalStream(streamId)
|
|
? maxRemoteUnidirectionalStreamId_
|
|
: maxRemoteBidirectionalStreamId_;
|
|
auto openedResult = openStreamIfNotClosed(
|
|
streamId, openPeerStreams, nextAcceptableStreamId, maxStreamId);
|
|
if (openedResult == LocalErrorCode::CREATING_EXISTING_STREAM) {
|
|
// Stream could be closed here.
|
|
return nullptr;
|
|
} else if (openedResult == LocalErrorCode::STREAM_LIMIT_EXCEEDED) {
|
|
throw QuicTransportException(
|
|
"Exceeded stream limit.", TransportErrorCode::STREAM_LIMIT_ERROR);
|
|
}
|
|
|
|
// Copy over the new streams.
|
|
std::set_difference(
|
|
openPeerStreams.begin(),
|
|
openPeerStreams.end(),
|
|
std::make_move_iterator(previousPeerStreams.begin()),
|
|
std::make_move_iterator(previousPeerStreams.end()),
|
|
std::back_inserter(newPeerStreams_));
|
|
|
|
auto it = streams_.emplace(
|
|
std::piecewise_construct,
|
|
std::forward_as_tuple(streamId),
|
|
std::forward_as_tuple(streamId, conn_));
|
|
QUIC_STATS(conn_.infoCallback, onNewQuicStream);
|
|
return &it.first->second;
|
|
}
|
|
|
|
folly::Expected<QuicStreamState*, LocalErrorCode>
|
|
QuicStreamManager::createStream(StreamId streamId) {
|
|
if (nodeType_ == QuicNodeType::Client && !isClientStream(streamId)) {
|
|
throw QuicTransportException(
|
|
"Attempted creating non-client stream on client",
|
|
TransportErrorCode::STREAM_STATE_ERROR);
|
|
} else if (nodeType_ == QuicNodeType::Server && !isServerStream(streamId)) {
|
|
throw QuicTransportException(
|
|
"Attempted creating non-server stream on server",
|
|
TransportErrorCode::STREAM_STATE_ERROR);
|
|
}
|
|
if (streams_.count(streamId) > 0) {
|
|
throw QuicTransportException(
|
|
"Creating an active stream", TransportErrorCode::STREAM_STATE_ERROR);
|
|
}
|
|
auto existingStream = getOrCreateOpenedLocalStream(streamId);
|
|
if (existingStream) {
|
|
return existingStream;
|
|
}
|
|
auto& nextAcceptableStreamId = isUnidirectionalStream(streamId)
|
|
? nextAcceptableLocalUnidirectionalStreamId_
|
|
: nextAcceptableLocalBidirectionalStreamId_;
|
|
auto maxStreamId = isUnidirectionalStream(streamId)
|
|
? maxLocalUnidirectionalStreamId_
|
|
: maxLocalBidirectionalStreamId_;
|
|
|
|
auto openedResult = openStreamIfNotClosed(
|
|
streamId, openLocalStreams_, nextAcceptableStreamId, maxStreamId);
|
|
if (openedResult != LocalErrorCode::NO_ERROR) {
|
|
return folly::makeUnexpected(openedResult);
|
|
}
|
|
auto it = streams_.emplace(
|
|
std::piecewise_construct,
|
|
std::forward_as_tuple(streamId),
|
|
std::forward_as_tuple(streamId, conn_));
|
|
QUIC_STATS(conn_.infoCallback, onNewQuicStream);
|
|
updateAppIdleState();
|
|
return &it.first->second;
|
|
}
|
|
|
|
void QuicStreamManager::removeClosedStream(StreamId streamId) {
|
|
auto it = streams_.find(streamId);
|
|
if (it == streams_.end()) {
|
|
VLOG(10) << "Trying to remove already closed stream=" << streamId;
|
|
return;
|
|
}
|
|
VLOG(10) << "Removing closed stream=" << streamId;
|
|
bool inTerminalStates = it->second.inTerminalStates();
|
|
DCHECK(inTerminalStates);
|
|
readableStreams_.erase(streamId);
|
|
peekableStreams_.erase(streamId);
|
|
writableStreams_.erase(streamId);
|
|
writableControlStreams_.erase(streamId);
|
|
blockedStreams_.erase(streamId);
|
|
deliverableStreams_.erase(streamId);
|
|
windowUpdates_.erase(streamId);
|
|
auto itr = std::find(lossStreams_.begin(), lossStreams_.end(), streamId);
|
|
if (itr != lossStreams_.end()) {
|
|
lossStreams_.erase(itr);
|
|
}
|
|
auto stopItr = stopSendingStreams_.find(streamId);
|
|
if (stopItr != stopSendingStreams_.end()) {
|
|
stopSendingStreams_.erase(stopItr);
|
|
}
|
|
if (it->second.isControl) {
|
|
DCHECK_GT(numControlStreams_, 0);
|
|
numControlStreams_--;
|
|
}
|
|
streams_.erase(it);
|
|
QUIC_STATS(conn_.infoCallback, onQuicStreamClosed);
|
|
if (isRemoteStream(nodeType_, streamId)) {
|
|
auto& openPeerStreams = isUnidirectionalStream(streamId)
|
|
? openUnidirectionalPeerStreams_
|
|
: openBidirectionalPeerStreams_;
|
|
auto streamItr = std::lower_bound(
|
|
openPeerStreams.begin(), openPeerStreams.end(), streamId);
|
|
if (streamItr != openPeerStreams.end() && *streamItr == streamId) {
|
|
openPeerStreams.erase(streamItr);
|
|
// Check if we should send a stream limit update. We need to send an
|
|
// update every time we've closed a number of streams >= the set windowing
|
|
// fraction.
|
|
uint64_t initialStreamLimit = isUnidirectionalStream(streamId)
|
|
? transportSettings_->advertisedInitialMaxStreamsUni
|
|
: transportSettings_->advertisedInitialMaxStreamsBidi;
|
|
uint64_t streamWindow =
|
|
initialStreamLimit / streamLimitWindowingFraction_;
|
|
uint64_t openableRemoteStreams = isUnidirectionalStream(streamId)
|
|
? openableRemoteUnidirectionalStreams()
|
|
: openableRemoteBidirectionalStreams();
|
|
// The "credit" here is how much available stream space we have based on
|
|
// what the initial stream limit was set to.
|
|
uint64_t streamCredit =
|
|
initialStreamLimit - openableRemoteStreams - openPeerStreams.size();
|
|
if (streamCredit >= streamWindow) {
|
|
if (isUnidirectionalStream(streamId)) {
|
|
uint64_t maxStreams = (maxRemoteUnidirectionalStreamId_ -
|
|
initialRemoteUnidirectionalStreamId_) /
|
|
detail::kStreamIncrement;
|
|
setMaxRemoteUnidirectionalStreams(maxStreams + streamCredit);
|
|
remoteUnidirectionalStreamLimitUpdate_ = maxStreams + streamCredit;
|
|
} else {
|
|
uint64_t maxStreams = (maxRemoteBidirectionalStreamId_ -
|
|
initialRemoteBidirectionalStreamId_) /
|
|
detail::kStreamIncrement;
|
|
setMaxRemoteBidirectionalStreams(maxStreams + streamCredit);
|
|
remoteBidirectionalStreamLimitUpdate_ = maxStreams + streamCredit;
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
auto streamItr = std::lower_bound(
|
|
openLocalStreams_.begin(), openLocalStreams_.end(), streamId);
|
|
if (streamItr != openLocalStreams_.end() && *streamItr == streamId) {
|
|
openLocalStreams_.erase(streamItr);
|
|
}
|
|
}
|
|
updateAppIdleState();
|
|
}
|
|
|
|
void QuicStreamManager::updateLossStreams(QuicStreamState& stream) {
|
|
auto it = std::find(lossStreams_.begin(), lossStreams_.end(), stream.id);
|
|
if (!stream.lossBuffer.empty()) {
|
|
if (it == lossStreams_.end()) {
|
|
lossStreams_.push_back(stream.id);
|
|
}
|
|
} else if (it != lossStreams_.end()) {
|
|
lossStreams_.erase(it);
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::updateReadableStreams(QuicStreamState& stream) {
|
|
updateHolBlockedTime(stream);
|
|
auto itr = readableStreams_.find(stream.id);
|
|
if (!stream.hasReadableData() && !stream.streamReadError.hasValue()) {
|
|
if (itr != readableStreams_.end()) {
|
|
VLOG(10) << __func__ << " remove stream=" << stream.id << " "
|
|
<< stream.conn;
|
|
readableStreams_.erase(itr);
|
|
}
|
|
return;
|
|
}
|
|
if (itr == readableStreams_.end()) {
|
|
VLOG(10) << __func__ << " add stream=" << stream.id << " " << stream.conn;
|
|
readableStreams_.insert(stream.id);
|
|
} else {
|
|
VLOG(10) << __func__ << " exists stream=" << stream.id << " "
|
|
<< stream.conn;
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::updateWritableStreams(QuicStreamState& stream) {
|
|
if (stream.hasWritableData() && !stream.streamWriteError.hasValue()) {
|
|
stream.conn.streamManager->addWritable(stream);
|
|
} else {
|
|
stream.conn.streamManager->removeWritable(stream);
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::updatePeekableStreams(QuicStreamState& stream) {
|
|
auto itr = peekableStreams_.find(stream.id);
|
|
if (!stream.hasPeekableData() || stream.streamReadError.hasValue()) {
|
|
if (itr != peekableStreams_.end()) {
|
|
VLOG(10) << __func__ << " remove stream=" << stream.id << " "
|
|
<< stream.conn;
|
|
peekableStreams_.erase(itr);
|
|
}
|
|
return;
|
|
}
|
|
if (itr == peekableStreams_.end()) {
|
|
VLOG(10) << __func__ << " add stream=" << stream.id << " " << stream.conn;
|
|
peekableStreams_.insert(stream.id);
|
|
} else {
|
|
VLOG(10) << __func__ << " exists stream=" << stream.id << " "
|
|
<< stream.conn;
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::updateAppIdleState() {
|
|
bool currentNonCtrlStreams = hasNonCtrlStreams();
|
|
if (isAppIdle_ && !currentNonCtrlStreams) {
|
|
// We were app limited, and we continue to be app limited.
|
|
return;
|
|
} else if (!isAppIdle_ && currentNonCtrlStreams) {
|
|
// We were not app limited, and we continue to be not app limited.
|
|
return;
|
|
}
|
|
isAppIdle_ = !currentNonCtrlStreams;
|
|
if (conn_.congestionController) {
|
|
conn_.congestionController->setAppIdle(isAppIdle_, Clock::now());
|
|
}
|
|
}
|
|
|
|
void QuicStreamManager::setStreamAsControl(QuicStreamState& stream) {
|
|
if (!stream.isControl) {
|
|
stream.isControl = true;
|
|
numControlStreams_++;
|
|
}
|
|
updateAppIdleState();
|
|
}
|
|
|
|
bool QuicStreamManager::isAppIdle() const {
|
|
return isAppIdle_;
|
|
}
|
|
} // namespace quic
|