Sha256: ea5c66a6935cdaabe2c9449265d437fbdbab841068293a5102185c1a16dbe40a

Contents?: true

Size: 1.32 KB

Versions: 13

Compression:

Stored size: 1.32 KB

Contents

// Copyright 2023 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

#include <grpc/support/port_platform.h>

#include "src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.h"

#include <utility>

#include <grpc/support/log.h>

namespace grpc_core {

void Chttp2MaxConcurrentStreamsPolicy::AddDemerit() {
  ++new_demerits_;
  ++unacked_demerits_;
}

void Chttp2MaxConcurrentStreamsPolicy::FlushedSettings() {
  sent_demerits_ += std::exchange(new_demerits_, 0);
}

void Chttp2MaxConcurrentStreamsPolicy::AckLastSend() {
  GPR_ASSERT(unacked_demerits_ >= sent_demerits_);
  unacked_demerits_ -= std::exchange(sent_demerits_, 0);
}

uint32_t Chttp2MaxConcurrentStreamsPolicy::AdvertiseValue() const {
  if (target_ < unacked_demerits_) return 0;
  return target_ - unacked_demerits_;
}

}  // namespace grpc_core

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
grpc-1.59.5 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.60.2 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.61.3 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.62.3 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.63.2 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.63.0 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.62.0 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.62.0.pre1 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.61.0 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.61.0.pre2 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.60.0 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.60.0.pre1 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc
grpc-1.59.2 src/core/ext/transport/chttp2/transport/max_concurrent_streams_policy.cc