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