OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:num_ack_ranges
(Results
1 - 3
of
3
) sorted by relevancy
/src/crypto/external/apache2/openssl/dist/include/internal/
quic_wire.h
138
* being acknowledged and ack_ranges[
num_ack_ranges
-1].start is
141
*
num_ack_ranges
must be greater than zero, as an ACK frame must
145
size_t
num_ack_ranges
;
member in struct:ossl_quic_frame_ack_st
508
* point to a preallocated array of ACK ranges and the
num_ack_ranges
field
513
*
num_ack_ranges
was too small to decode all ranges).
515
* On success, this function modifies the
num_ack_ranges
field to indicate the
521
*
num_ack_ranges
, as many ACK ranges as possible are decoded into the range
523
* condition, as *total_ranges will exceed
num_ack_ranges
.
/src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_wire.c
23
for (i = 0; i < ack->
num_ack_ranges
; ++i)
63
uint64_t i,
num_ack_ranges
= ack->
num_ack_ranges
;
local
66
if (
num_ack_ranges
== 0)
79
|| !WPACKET_quic_write_vlint(pkt,
num_ack_ranges
- 1)
83
for (i = 1; i <
num_ack_ranges
; ++i) {
549
if (ack->
num_ack_ranges
> 0) {
566
if (ack != NULL && i + 1 < ack->
num_ack_ranges
) {
572
if (ack != NULL && ack_range_count + 1 < ack->
num_ack_ranges
)
573
ack->
num_ack_ranges
= (size_t)ack_range_count + 1
[
all
...]
/src/crypto/external/apache2/openssl/dist/test/
quic_ackm_test.c
148
size_t
num_ack_ranges
;
member in struct:tx_ack_test_case
404
ack.
num_ack_ranges
= c->
num_ack_ranges
;
577
ack.
num_ack_ranges
= 1;
642
size_t
num_ack_ranges
; /* CHECK_ACKS */
member in struct:rx_test_op
1018
if (!TEST_size_t_eq(ack->
num_ack_ranges
, s->
num_ack_ranges
))
1021
for (i = 0; i < ack->
num_ack_ranges
; ++i) {
1055
rx_ack.
num_ack_ranges
= 1;
Completed in 68 milliseconds
Indexes created Sat Feb 28 05:31:39 UTC 2026