mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Fix Windows support
This commit is contained in:
parent
41d574f34c
commit
fb3e20e0bc
72 changed files with 912 additions and 475 deletions
|
@ -38,7 +38,7 @@ test_post_quiescence_explosion (void)
|
|||
struct lsquic_conn lconn = LSCONN_INITIALIZER_CIDLEN(lconn, 8);
|
||||
struct lsquic_conn_public conn_pub = { .lconn = &lconn, };
|
||||
int i;
|
||||
struct lsquic_packet_out packet_out = {};
|
||||
struct lsquic_packet_out packet_out; memset(&packet_out, 0, sizeof(packet_out));
|
||||
|
||||
cci->cci_init(&cubic, &conn_pub, 0);
|
||||
cubic.cu_ssthresh = cubic.cu_cwnd = 32 * 1370;
|
||||
|
@ -72,7 +72,7 @@ test_post_quiescence_explosion2 (void)
|
|||
struct lsquic_conn lconn = LSCONN_INITIALIZER_CIDLEN(lconn, 8);
|
||||
struct lsquic_conn_public conn_pub = { .lconn = &lconn, };
|
||||
int i;
|
||||
struct lsquic_packet_out packet_out = {};
|
||||
struct lsquic_packet_out packet_out; memset(&packet_out, 0, sizeof(packet_out));
|
||||
|
||||
cci->cci_init(&cubic, &conn_pub, 0);
|
||||
cubic.cu_ssthresh = cubic.cu_cwnd = 32 * 1370;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue