Skip to content

Commit

Permalink
fixes issues introduced from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Clendenin committed Apr 12, 2024
1 parent c25d6dd commit 05d791a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions quiche/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9539,7 +9539,7 @@ mod tests {
// add it to its destination connection ID (DCID) list.
let _ = pipe
.client
.new_source_cid(&client_source_cid, client_source_token, true)
.new_scid(&client_source_cid, client_source_token, true)
.unwrap();

// Forward the NEW_CONNECTION_ID Frame generated above over the pipe
Expand All @@ -9563,6 +9563,7 @@ mod tests {
1,
preferred_address_params.stateless_reset_token,
0,
&mut SmallVec::new(),
)
.unwrap();

Expand Down Expand Up @@ -9681,14 +9682,14 @@ mod tests {
// add it to its destination connection ID (DCID) list.
let _ = pipe
.server
.new_source_cid(&server_source_cid_2, server_source_token_2, true)
.new_scid(&server_source_cid_2, server_source_token_2, true)
.unwrap();
// Notify the client of its new source connection ID (SCID), this also
// advertises the ID to the server The server will automatically
// add it to its destination connection ID (DCID) list.
let _ = pipe
.client
.new_source_cid(&client_source_cid_2, client_source_token_2, true)
.new_scid(&client_source_cid_2, client_source_token_2, true)
.unwrap();

// Forward the NEW_CONNECTION_ID Frames generated above over the pipe
Expand Down

0 comments on commit 05d791a

Please sign in to comment.