Skip to content

Commit 70d083b

Browse files
committed
Upgrade to qlog 0.16
1 parent d305440 commit 70d083b

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ hex-literal = "1"
3030
lru-slab = "0.1.2"
3131
log = "0.4"
3232
pin-project-lite = "0.2"
33-
qlog = "0.15.2"
33+
qlog = "0.16"
3434
rand = "0.9"
3535
rcgen = "0.14"
3636
ring = "0.17"

quinn-proto/src/connection/paths.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use super::{
1010
use crate::{Duration, Instant, TIMER_GRANULARITY, TransportConfig, congestion, packet::SpaceId};
1111

1212
#[cfg(feature = "qlog")]
13-
use qlog::events::quic::MetricsUpdated;
13+
use qlog::events::{ExData, quic::MetricsUpdated};
1414

1515
/// Description of a particular network path
1616
pub(super) struct PathData {
@@ -264,6 +264,7 @@ impl RecoveryMetrics {
264264
}
265265

266266
Some(MetricsUpdated {
267+
ex_data: ExData::default(),
267268
min_rtt: updated.min_rtt.map(|rtt| rtt.as_secs_f32()),
268269
smoothed_rtt: updated.smoothed_rtt.map(|rtt| rtt.as_secs_f32()),
269270
latest_rtt: updated.latest_rtt.map(|rtt| rtt.as_secs_f32()),

0 commit comments

Comments
 (0)