Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Feb 12, 2025
1 parent a9932c9 commit e18f10b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neqo-transport/src/connection/tests/resumption.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fn ticket_rtt(rtt: Duration) -> Duration {
dec.skip_vvec(); // Skip over the payload.

// Replace the ACK frame with PADDING.
plaintext[..ACK_FRAME_1.len()].fill(u64::from(FrameType::Padding));
plaintext[..ACK_FRAME_1.len()].fill(u8::from(FrameType::Padding));

// And rebuild a packet.
let mut packet = header.clone();
Expand Down

0 comments on commit e18f10b

Please sign in to comment.