| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_fc.c | 122 * RX Flow Controller (RXFC) 126 int ossl_quic_rxfc_init(QUIC_RXFC *rxfc, QUIC_RXFC *conn_rxfc, 135 rxfc->swm = 0; 136 rxfc->cwm = initial_window_size; 137 rxfc->rwm = 0; 138 rxfc->esrwm = 0; 139 rxfc->hwm = 0; 140 rxfc->cur_window_size = initial_window_size; 141 rxfc->max_window_size = max_window_size; 142 rxfc->parent = conn_rxfc [all...] |
| 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...] |
| quic_tserver.c | 293 * RXFC of the retirement of controlled bytes. Update the active stream 294 * status (the RXFC may now want to emit a frame granting more credit to 301 if (!ossl_quic_rxfc_on_retire(&qs->rxfc, *bytes_read,
|
| quic_stream_map.c | 360 || ossl_quic_rxfc_has_cwm_changed(&s->rxfc, 0))))
|
| quic_txp.c | 1501 /* Does the connection-level RXFC want to produce a frame? */ 2585 || ossl_quic_rxfc_has_cwm_changed(&stream->rxfc, 0))) { 2591 cwm = ossl_quic_rxfc_get_cwm(&stream->rxfc); 3047 ossl_quic_rxfc_has_cwm_changed(&stream->rxfc, 1);
|
| quic_channel.c | 205 * applies to the RXFC. 1931 /* Send the default CWM for a new RXFC. */ 3781 /* RXFC */ 3791 if (!ossl_quic_rxfc_init(&qs->rxfc, &ch->conn_rxfc,
|
| quic_impl.c | 2967 * RXFC of the retirement of controlled bytes. Update the active stream 2968 * status (the RXFC may now want to emit a frame granting more credit to 2975 if (!ossl_quic_rxfc_on_retire(&stream->rxfc, *bytes_read,
|
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| quic_fc.h | 123 * RX Flow Controller (RXFC) 147 * a connection-level RXFC if the RXFC is for stream-level flow control, and 150 * expressed in bytes and determine how much credit the RXFC extends to the peer 153 int ossl_quic_rxfc_init(QUIC_RXFC *rxfc, QUIC_RXFC *conn_rxfc, 164 int ossl_quic_rxfc_init_standalone(QUIC_RXFC *rxfc, 170 * Gets the parent (i.e., connection-level) RXFC. Returns NULL if called on a 171 * connection-level RXFC. 173 QUIC_RXFC *ossl_quic_rxfc_get_parent(QUIC_RXFC *rxfc); 178 void ossl_quic_rxfc_set_max_window_size(QUIC_RXFC *rxfc, [all...] |
| quic_stream.h | 319 * If they are non-NULL, the `rxfc` is called when receive stream data 324 QUIC_RSTREAM *ossl_quic_rstream_new(QUIC_RXFC *rxfc,
|
| 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.
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_txp_test.c | 1512 || !TEST_true(ossl_quic_rxfc_init(&s->rxfc, &h.conn_rxfc, 1516 || !TEST_ptr(s->rstream = ossl_quic_rstream_new(&s->rxfc,
|