Searched refs:rxfc (Results 1 – 12 of 12) sorted by relevance
| /src/crypto/openssl/ssl/quic/ |
| H A D | quic_fc.c | 126 int ossl_quic_rxfc_init(QUIC_RXFC *rxfc, QUIC_RXFC *conn_rxfc, in ossl_quic_rxfc_init() argument 135 rxfc->swm = 0; in ossl_quic_rxfc_init() 136 rxfc->cwm = initial_window_size; in ossl_quic_rxfc_init() 137 rxfc->rwm = 0; in ossl_quic_rxfc_init() 138 rxfc->esrwm = 0; in ossl_quic_rxfc_init() 139 rxfc->hwm = 0; in ossl_quic_rxfc_init() 140 rxfc->cur_window_size = initial_window_size; in ossl_quic_rxfc_init() 141 rxfc->max_window_size = max_window_size; in ossl_quic_rxfc_init() 142 rxfc->parent = conn_rxfc; in ossl_quic_rxfc_init() 143 rxfc->error_code = 0; in ossl_quic_rxfc_init() [all …]
|
| H A D | quic_rstream.c | 18 QUIC_RXFC *rxfc; member 24 QUIC_RSTREAM *ossl_quic_rstream_new(QUIC_RXFC *rxfc, in ossl_quic_rstream_new() argument 39 ret->rxfc = rxfc; in ossl_quic_rstream_new() 160 if (qrs->rxfc != NULL in ossl_quic_rstream_read() 161 && !ossl_quic_rxfc_on_retire(qrs->rxfc, *readbytes, rtt)) in ossl_quic_rstream_read() 252 if (qrs->rxfc != NULL) { in ossl_quic_rstream_release_record() 255 if (!ossl_quic_rxfc_on_retire(qrs->rxfc, offset, rtt)) in ossl_quic_rstream_release_record()
|
| H A D | quic_rx_depack.c | 185 if (!ossl_quic_rxfc_on_rx_stream_frame(&stream->rxfc, in depack_do_frame_reset_stream() 195 fce = ossl_quic_rxfc_get_error(&stream->rxfc, 0); in depack_do_frame_reset_stream() 270 QUIC_RXFC *rxfc; in depack_do_frame_crypto() local 294 rxfc = &ch->crypto_rxfc[ackm_data->pkt_space]; in depack_do_frame_crypto() 296 if (!ossl_quic_rxfc_on_rx_stream_frame(rxfc, f.offset + f.len, in depack_do_frame_crypto() 305 if (ossl_quic_rxfc_get_error(rxfc, 0) != OSSL_QUIC_ERR_NO_ERROR) { in depack_do_frame_crypto() 539 if (!ossl_quic_rxfc_on_rx_stream_frame(&stream->rxfc, in depack_do_frame_stream() 550 fce = ossl_quic_rxfc_get_error(&stream->rxfc, 0); in depack_do_frame_stream()
|
| H A D | quic_tserver.c | 301 if (!ossl_quic_rxfc_on_retire(&qs->rxfc, *bytes_read, in ossl_quic_tserver_read()
|
| H A D | quic_txp.c | 2585 || ossl_quic_rxfc_has_cwm_changed(&stream->rxfc, 0))) { in txp_generate_stream_related() 2591 cwm = ossl_quic_rxfc_get_cwm(&stream->rxfc); in txp_generate_stream_related() 3047 ossl_quic_rxfc_has_cwm_changed(&stream->rxfc, 1); in txp_pkt_commit()
|
| H A D | quic_stream_map.c | 360 || ossl_quic_rxfc_has_cwm_changed(&s->rxfc, 0)))) in ossl_quic_stream_map_update_state()
|
| H A D | quic_channel.c | 3791 if (!ossl_quic_rxfc_init(&qs->rxfc, &ch->conn_rxfc, in ch_init_new_stream()
|
| H A D | quic_impl.c | 2975 if (!ossl_quic_rxfc_on_retire(&stream->rxfc, *bytes_read, in quic_read_actual()
|
| /src/crypto/openssl/include/internal/ |
| H A D | quic_fc.h | 153 int ossl_quic_rxfc_init(QUIC_RXFC *rxfc, QUIC_RXFC *conn_rxfc, 164 int ossl_quic_rxfc_init_standalone(QUIC_RXFC *rxfc, 173 QUIC_RXFC *ossl_quic_rxfc_get_parent(QUIC_RXFC *rxfc); 178 void ossl_quic_rxfc_set_max_window_size(QUIC_RXFC *rxfc, 199 int ossl_quic_rxfc_on_rx_stream_frame(QUIC_RXFC *rxfc, 219 int ossl_quic_rxfc_on_retire(QUIC_RXFC *rxfc, 232 uint64_t ossl_quic_rxfc_get_cwm(const QUIC_RXFC *rxfc); 239 uint64_t ossl_quic_rxfc_get_swm(const QUIC_RXFC *rxfc); 245 uint64_t ossl_quic_rxfc_get_rwm(const QUIC_RXFC *rxfc); 251 uint64_t ossl_quic_rxfc_get_credit(const QUIC_RXFC *rxfc); [all …]
|
| H A D | quic_stream_map.h | 156 QUIC_RXFC rxfc; /* NULL if TX-only */ member 500 if (!ossl_assert(ossl_quic_rxfc_get_final_size(&s->rxfc, final_size))) in ossl_quic_stream_recv_get_final_size()
|
| H A D | quic_stream.h | 324 QUIC_RSTREAM *ossl_quic_rstream_new(QUIC_RXFC *rxfc,
|
| /src/crypto/openssl/test/ |
| H A D | quic_txp_test.c | 1512 || !TEST_true(ossl_quic_rxfc_init(&s->rxfc, &h.conn_rxfc, in run_script() 1516 || !TEST_ptr(s->rstream = ossl_quic_rstream_new(&s->rxfc, in run_script()
|