Skip to content

Commit

Permalink
Fix regression in test_quic_drops
Browse files Browse the repository at this point in the history
  • Loading branch information
nbridge-jump committed Aug 16, 2023
1 parent 1f051d4 commit cdf280e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/tango/quic/tests/test_quic_drops.c
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,8 @@ main( int argc, char ** argv ) {
client_quic->cb.now = test_clock;
client_quic->cb.now_ctx = NULL;

client_quic->config.initial_rx_max_stream_data = 1<<15;

fd_quic_config_t * server_config = &server_quic->config;
server_config->idle_timeout = 5e9;

Expand All @@ -474,6 +476,8 @@ main( int argc, char ** argv ) {
server_quic->cb.now = test_clock;
server_quic->cb.now_ctx = NULL;

server_quic->config.initial_rx_max_stream_data = 1<<15;

/* pcap */
FILE * pcap_file = fopen( "test_quic_drops.pcapng", "wb" );
FD_TEST( pcap_file );
Expand Down

0 comments on commit cdf280e

Please sign in to comment.