Skip to content

Commit

Permalink
Remove cwin print
Browse files Browse the repository at this point in the history
  • Loading branch information
TimEvens committed Dec 12, 2023
1 parent 69a1e3b commit 3a7b442
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion picoquic/quicctx.c
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,6 @@ void picoquic_set_cwin_max(picoquic_quic_t* quic, uint64_t cwin_max)
void picoquic_set_cwin_min(picoquic_quic_t* quic, uint64_t cwin_min)
{
quic->cwin_min = (cwin_min > quic->cwin_max || cwin_min < PICOQUIC_MAX_PACKET_SIZE) ? PICOQUIC_CWIN_MINIMUM : cwin_min;
fprintf(stderr, "cwin value: %" PRIu64 "\n", quic->cwin_min);
}

void picoquic_set_max_data_control(picoquic_quic_t* quic, uint64_t max_data)
Expand Down

0 comments on commit 3a7b442

Please sign in to comment.