Skip to content

Commit

Permalink
[+] fix million seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
Yanmei-Liu committed Nov 5, 2023
1 parent 53ed448 commit 5fac8bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions demo/demo_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -1971,9 +1971,9 @@ xqc_demo_cli_parse_args(int argc, char *argv[], xqc_demo_cli_client_args_t *args
break;

case 'B':
printf("option multipath set path status: %s\n", optarg);
printf("option multipath set path status: %s ms\n", optarg);
args->quic_cfg.send_path_standby = 1;
args->quic_cfg.path_status_timer_threshold = atoi(optarg);
args->quic_cfg.path_status_timer_threshold = atoi(optarg) * 1000;
break;

case 'I':
Expand Down

0 comments on commit 5fac8bd

Please sign in to comment.