Skip to content

Commit

Permalink
fix bug thanks to Yanmei Liu interop
Browse files Browse the repository at this point in the history
  • Loading branch information
qdeconinck committed Mar 16, 2024
1 parent 35923b4 commit 920618c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quiche/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8039,7 +8039,7 @@ impl Connection {
return Err(Error::InvalidState);
}

if self.ids.retire_scid(0, seq_num, &hdr.dcid)?.is_some() {
if self.ids.retire_scid(path_id, seq_num, &hdr.dcid)?.is_some() {
if let Some(pid) = self.paths.pid_from_path_id(path_id) {
let path = self.paths.get_mut(pid)?;

Expand Down

0 comments on commit 920618c

Please sign in to comment.