Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
256aacc
feat: implement dual-window RTT tracking and expose metrics in LinkStats
datagutt Feb 11, 2026
3064c73
feat: add queued_count method to BatchSender and update score calcula…
datagutt Feb 11, 2026
e4c749c
refactor: update STARTUP_GRACE_MS to 5000 and adjust related reconnec…
datagutt Feb 11, 2026
3f67a3d
refactor: enhance logging in run_sender_with_config to include schedu…
datagutt Feb 11, 2026
308d3f0
refactor: replace timestamp generation in keepalive packet functions …
datagutt Feb 11, 2026
86039ff
refactor: update MIN_SWITCH_INTERVAL_MS to 15 for improved connection…
datagutt Feb 11, 2026
082d118
refactor: increase score hysteresis from 2% to 10% for enhanced mode
datagutt Feb 11, 2026
ce18df8
fix: clear pre-registration state on REG3 to prevent startup death sp…
datagutt Feb 11, 2026
ce147dd
feat(network-sim): add network simulation toolkit with impairment mod…
datagutt Feb 11, 2026
6a4d011
Add integration tests and update dependencies for network simulation
datagutt Feb 11, 2026
0bc155a
chore: fmt
datagutt Feb 11, 2026
c87ebb3
Delete receiver
datagutt Feb 11, 2026
45e71bc
feat: add initial configuration for CodeRabbit integration
datagutt Feb 11, 2026
f10eaed
test: adjust cooldown timing in RTT threshold tests
datagutt Feb 11, 2026
3beedf1
refactor: update RTT handling to use Ewma for smoother calculations
datagutt Feb 12, 2026
81e91fc
chore: fmt
datagutt Feb 12, 2026
fd5fa6a
refactor: reset batch sender during connection reset
datagutt Feb 12, 2026
e7a38cb
refactor: improve signal handling and validation in process management
datagutt Feb 12, 2026
78d641c
refactor: update inject_stream to allow dead code and enhance error h…
datagutt Feb 12, 2026
517030f
fmt fmt fmt
datagutt Feb 12, 2026
bb84439
At Least It Was Here
datagutt Feb 12, 2026
c450800
comment
datagutt Feb 12, 2026
5dc82e8
refactor: simplify mode handling in run_sender_with_config function
datagutt Feb 12, 2026
b5487fd
clippyyyy
datagutt Feb 12, 2026
bd96be6
refactor: update binary check command and improve resource cleanup in…
datagutt Feb 12, 2026
281f34a
test: add assertions for delay values in scenario tests
datagutt Feb 12, 2026
8ef2b6c
chore: fmt
datagutt Feb 12, 2026
71063c4
refactor: streamline UDP stream injection script formatting
datagutt Feb 12, 2026
ceae1e0
chore: fmt
datagutt Feb 12, 2026
2b4bd84
refactor: ensure injection thread panics are handled in random walk s…
datagutt Feb 12, 2026
c1c1df8
refactor: fix formatting in UDP stream injection script
datagutt Feb 12, 2026
d4e86fe
smhhhhhhhhhhhhhhh
datagutt Feb 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 94 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# 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.

# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
# https://docs.coderabbit.ai/getting-started/configure-coderabbit/
# Validator https://docs.coderabbit.ai/configuration/yaml-validator#yaml-validator
# In PR, comment "@coderabbitai configuration" to get the full config including defaults
# Set the language for reviews by using the corresponding ISO language code.
# Default: "en-US"
language: "en-US"
# Settings related to reviews.
# Default: {}
reviews:
# Set the profile for reviews. Assertive profile yields more feedback, that may be considered nitpicky.
# Options: chill, assertive
# Default: "chill"
profile: chill
# Add this keyword in the PR/MR title to auto-generate the title.
# Default: "@coderabbitai"
auto_title_placeholder: "@coderabbitai title"
# Auto Title Instructions - Custom instructions for auto-generating the PR/MR title.
# Default: ""
auto_title_instructions: 'Format: "<category>: <title>". Category must be one of: feat, fix, docs, style, refactor, perf, test, build, ci, chore, revert, cp. The category must be followed by a colon. Title should be concise (<= 80 chars). Example: "feat: Add logit_bias support".' # current: ''
# Set the commit status to 'pending' when the review is in progress and 'success' when it is complete.
# Default: true
commit_status: false
# Generate walkthrough in a markdown collapsible section.
# Default: false
collapse_walkthrough: true
# Generate an assessment of how well the changes address the linked issues in the walkthrough.
# Default: true
assess_linked_issues: true
# Include possibly related issues in the walkthrough.
# Default: true
related_issues: true
# Related PRs - Include possibly related pull requests in the walkthrough.
# Default: true
related_prs: true
# Suggest labels based on the changes in the pull request in the walkthrough.
# Default: true
suggested_labels: true
# Suggest reviewers based on the changes in the pull request in the walkthrough.
# Default: true
suggested_reviewers: true
# Generate a poem in the walkthrough comment.
# Default: true
poem: false # current: true
# Post review details on each review. Additionally, post a review status when a review is skipped in certain cases.
# Default: true
review_status: false # current: true
# Configuration for pre merge checks
# Default: {}
pre_merge_checks:
# Custom Pre-merge Checks - Add unique checks to enforce your team's standards before merging a pull request. Each check must have a unique name (up to 50 characters) and clear instructions (up to 10000 characters). Use these to automatically verify coding, security, documentation, or business rules and maintain code quality.
# Default: []
custom_checks: []
auto_review:
# Configuration for auto review
# Default: {}
# Automatic Incremental Review - Automatic incremental code review on each push
# Default: true
auto_incremental_review: true # current: true
# Review draft PRs/MRs.
# Default: false
drafts: false
# Base branches (other than the default branch) to review. Accepts regex patterns. Use '.*' to match all branches.
# Default: []
base_branches: ["main"] # current: []
# Configuration for knowledge base
# Default: {}
knowledge_base:
code_guidelines:
# CodeRabbit will analyse and learn from your organization's code guidelines, which you can mention in the file patterns section. These guidelines will then be used to conduct thorough code reviews.
# Default: {}
enabled: true
# Enabled - Enable CodeRabbit to enforce your organization's coding standards during reviews.
# Default: true
filePatterns: # current: []
# File Patterns - Specify files for your coding guideline documents in this section. CodeRabbit will scan these files to understand your team's standards and apply them during code reviews. Multiple files supported. File names are case-sensitive. Common files like: (**/.cursorrules, .github/copilot-instructions.md, .github/instructions/*.instructions.md, **/CLAUDE.md, **/GEMINI.md, **/.cursor/rules/*, **/.windsurfrules, **/.clinerules/*, **/.rules/*, **/AGENT.md, **/AGENTS.md) are included by default.
# Default: []
- "AGENTS.md"
- "CONTRIBUTING.md"
Loading
Loading