Tencent / tquic

A high-performance, lightweight, and cross-platform QUIC library
https://tquic.net/
Other
1.02k stars 82 forks source link

It seems these functions in pacing.rs are not called #272

Closed SoonyangZhang closed 3 months ago

SoonyangZhang commented 3 months ago

The conn sends packets with intervals determined by pacing rate, BBR can work normally.

glime-ai[bot] commented 3 months ago

Yes, BBR (Bottleneck Bandwidth and Round-trip propagation time) congestion control can function effectively by pacing the transmission of packets based on a calculated pacing rate. This pacing rate is dynamically adjusted to match the estimated bottleneck bandwidth (BtlBw) and the round-trip time (RTT) of the network path. BBR aims to optimize both throughput and latency by controlling the rate at which data is sent, ensuring that the data flow matches the available network capacity without causing excessive delay or packet loss.

This comment was generated by Glime.

iyangsj commented 3 months ago

@SoonyangZhang Pacing is currently in development and will be fully supported in an upcoming version.