Add adaptive CC probe scaling and NACK limits - #111
Draft
sleepybishop wants to merge 1 commit into
Draft
Conversation
sleepybishop
force-pushed
the
cc-nack-limits
branch
from
August 16, 2026 18:52
409604d to
f0b0926
Compare
sleepybishop
marked this pull request as ready for review
August 16, 2026 19:12
sleepybishop
force-pushed
the
cc-nack-limits
branch
3 times, most recently
from
August 17, 2026 00:53
ccfedef to
766e368
Compare
sleepybishop
force-pushed
the
cc-nack-limits
branch
from
August 17, 2026 03:21
766e368 to
0d22477
Compare
sleepybishop
marked this pull request as draft
August 18, 2026 22:02
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Hello,
This PR introduces adaptive congestion control probe scaling, piggybacking, and NACK failsafe limits. Together, these optimizations prevent network collapse from feedback storms in many-to-many topologies (#112) where existing TFRC would normally scale poorly.
NormSetAdaptiveProbeScaling()API to enable dynamic scaling of GRTT CC probe frequencies, allowing thousands of nodes to safely participate without probe-flooding the mesh.NormCCProbeExtensionto piggyback CC probe requests directly insideNORM_DATApackets, dramatically reducing independent packet overhead.NormSetNackFailsafeLimit()API to place a hard ceiling on the number of NACKs transmitted per GRTT window, preventing feedback implosion during synchronized network-wide loss events.+nacklimitCLI flag in thenormapptesting utility to evaluate NACK capping.Happy to adjust naming conventions, the API shape, or the CC probe scaling math if you prefer a different approach.