Skip to content

Commit

Permalink
after sending PATH_CHALLENGE, make sure to update the timer
Browse files Browse the repository at this point in the history
  • Loading branch information
deweerdt authored and kazuho committed Sep 5, 2024
1 parent ab91b16 commit cf9c458
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/quicly.c
Original file line number Diff line number Diff line change
Expand Up @@ -6232,6 +6232,7 @@ static int handle_path_response_frame(quicly_conn_t *conn, struct st_quicly_hand
if (ptls_mem_equal(path->path_challenge.data, frame.data, QUICLY_PATH_CHALLENGE_DATA_LEN)) {
/* Path validation succeeded, stop sending PATH_CHALLENGEs. Active path might become changed in `quicly_receive`. */
path->path_challenge.send_at = INT64_MAX;
recalc_send_probe_at(conn);
conn->super.stats.num_paths.validated += 1;
}

Expand Down

0 comments on commit cf9c458

Please sign in to comment.