HomeSort by: relevance | last modified time | path
    Searched defs:rxfc (Results 1 - 3 of 3) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_rstream.c 18 QUIC_RXFC *rxfc; member in struct:quic_rstream_st
24 QUIC_RSTREAM *ossl_quic_rstream_new(QUIC_RXFC *rxfc,
39 ret->rxfc = rxfc;
160 if (qrs->rxfc != NULL
161 && !ossl_quic_rxfc_on_retire(qrs->rxfc, *readbytes, rtt))
252 if (qrs->rxfc != NULL) {
255 if (!ossl_quic_rxfc_on_retire(qrs->rxfc, offset, rtt))
quic_rx_depack.c 182 * terminate the connection otherwise (RFC 9000 s. 4.5). The RXFC takes care
185 if (!ossl_quic_rxfc_on_rx_stream_frame(&stream->rxfc,
195 fce = ossl_quic_rxfc_get_error(&stream->rxfc, 0);
270 QUIC_RXFC *rxfc; local
294 rxfc = &ch->crypto_rxfc[ackm_data->pkt_space];
296 if (!ossl_quic_rxfc_on_rx_stream_frame(rxfc, f.offset + f.len,
301 "internal error (crypto RXFC)");
305 if (ossl_quic_rxfc_get_error(rxfc, 0) != OSSL_QUIC_ERR_NO_ERROR) {
434 "internal error (stream count RXFC)");
539 if (!ossl_quic_rxfc_on_rx_stream_frame(&stream->rxfc,
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_stream_map.h 129 * For the receive part, the final size is tracked by the stream-level RXFC;
156 QUIC_RXFC rxfc; /* NULL if TX-only */ member in struct:quic_stream_st
500 if (!ossl_assert(ossl_quic_rxfc_get_final_size(&s->rxfc, final_size)))
836 * The stream is retired for the purposes of MAX_STREAMS RXFC.

Completed in 25 milliseconds