Skip to content

Commit beaa959

Browse files
committed
fixes
1 parent 0d7e08d commit beaa959

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/rs/ffi/linux_bindings.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ pub const QUIC_PARAM_CONN_STATISTICS_V2_PLAT: u32 = 83886103;
210210
pub const QUIC_PARAM_CONN_ORIG_DEST_CID: u32 = 83886104;
211211
pub const QUIC_PARAM_CONN_SEND_DSCP: u32 = 83886105;
212212
pub const QUIC_PARAM_CONN_NETWORK_STATISTICS: u32 = 83886112;
213+
pub const QUIC_PARAM_CONN_CLOSE_ASYNC: u32 = 83886106;
213214
pub const QUIC_PARAM_TLS_HANDSHAKE_INFO: u32 = 100663296;
214215
pub const QUIC_PARAM_TLS_NEGOTIATED_ALPN: u32 = 100663297;
215216
pub const QUIC_PARAM_STREAM_ID: u32 = 134217728;

src/rs/ffi/win_bindings.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ pub const QUIC_PARAM_CONN_STATISTICS_V2_PLAT: u32 = 83886103;
204204
pub const QUIC_PARAM_CONN_ORIG_DEST_CID: u32 = 83886104;
205205
pub const QUIC_PARAM_CONN_SEND_DSCP: u32 = 83886105;
206206
pub const QUIC_PARAM_CONN_NETWORK_STATISTICS: u32 = 83886112;
207+
pub const QUIC_PARAM_CONN_CLOSE_ASYNC: u32 = 83886106;
207208
pub const QUIC_PARAM_TLS_HANDSHAKE_INFO: u32 = 100663296;
208209
pub const QUIC_PARAM_TLS_NEGOTIATED_ALPN: u32 = 100663297;
209210
pub const QUIC_PARAM_TLS_SCHANNEL_CONTEXT_ATTRIBUTE_W: u32 = 117440512;

src/test/lib/ApiTest.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4969,10 +4969,10 @@ void QuicTest_QUIC_PARAM_CONN_CLOSE_ASYNC(MsQuicRegistration& Registration)
49694969
{
49704970
#ifdef QUIC_API_ENABLE_PREVIEW_FEATURES
49714971
TestScopeLogger LogScope0("QUIC_PARAM_CONN_CLOSE_ASYNC");
4972-
MsQuicConnection Connection(Registration);
4973-
TEST_QUIC_SUCCEEDED(Connection.GetInitStatus());
49744972
{
49754973
TestScopeLogger LogScope1("GetParam default");
4974+
MsQuicConnection Connection(Registration);
4975+
TEST_QUIC_SUCCEEDED(Connection.GetInitStatus());
49764976
BOOLEAN Flag = FALSE;
49774977
SimpleGetParamTest(Connection.Handle, QUIC_PARAM_CONN_CLOSE_ASYNC, sizeof(BOOLEAN), &Flag);
49784978
}

0 commit comments

Comments
 (0)