Skip to content

Commit

Permalink
Merge pull request #1888 from lurker-Chen/xquic_fix
Browse files Browse the repository at this point in the history
default use bbr as cc instead of cubic
  • Loading branch information
drawing authored Nov 9, 2023
2 parents e5a2a78 + 926c27e commit 4db15bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ngx_http_xquic_module/ngx_http_xquic_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ ngx_http_xquic_init_main_conf(ngx_conf_t *cf, void *conf)
}

if (qmcf->congestion_control.data == NULL) {
ngx_str_set(&(qmcf->congestion_control), "cubic");
ngx_str_set(&(qmcf->congestion_control), "bbr");
}

if (qmcf->pacing_on == NGX_CONF_UNSET) {
Expand Down

0 comments on commit 4db15bd

Please sign in to comment.