You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In QuicSocketBase::OnReceivedTransportParameters function quic-socket-base.cc, this part of the source code causes an immediate return when m_initial_max_stream_id_uni has its default value of 2. As a result, the rest of the OnReceivedTransportParameters function, which sets the transport values, is not processed.
mask = transportParameters.GetInitialMaxStreamIdUni () & 0x00000003;
if ((mask == 2) && m_socketState != CONNECTING_CLT)
{
// TODO AbortConnection(QuicSubheader::TransportErrorCodes_t::TRANSPORT_PARAMETER_ERROR, "Invalid Initial Max Stream Id Uni value provided from Server");
return;
}
The text was updated successfully, but these errors were encountered:
In QuicSocketBase::OnReceivedTransportParameters function quic-socket-base.cc, this part of the source code causes an immediate return when m_initial_max_stream_id_uni has its default value of 2. As a result, the rest of the OnReceivedTransportParameters function, which sets the transport values, is not processed.
mask = transportParameters.GetInitialMaxStreamIdUni () & 0x00000003;
if ((mask == 2) && m_socketState != CONNECTING_CLT)
{
// TODO AbortConnection(QuicSubheader::TransportErrorCodes_t::TRANSPORT_PARAMETER_ERROR, "Invalid Initial Max Stream Id Uni value provided from Server");
return;
}
The text was updated successfully, but these errors were encountered: