Interval problem while using BBR PacingEnabled? #3864
Unanswered
noah-hwang
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
bbr.c:The code is as follows
else if (
!TimeSinceLastSendValid ||
!Connection->Settings.PacingEnabled ||
Bbr->MinRtt == UINT32_MAX ||
Bbr->MinRtt < MS_TO_US(QUIC_SEND_PACING_INTERVAL))
///////////////////////////////
//
// The number of microseconds between pacing chunks.
//
#define QUIC_SEND_PACING_INTERVAL 1000
///////////////////////////////
1.QUIC_SEND_PACING_INTERVAL is Nanoseconds or milliseconds?
2. Bbr->MinRtt < MS_TO_US(QUIC_SEND_PACING_INTERVAL)
Is it correct?
Thanks!!
Beta Was this translation helpful? Give feedback.
All reactions