Lines Matching +full:one +full:- +full:time
2 * Copyright 2022-2025 The OpenSSL Project Authors. All Rights Reserved.
17 # include "internal/time.h"
41 * Configures the RX-side maximum ACK delay. This is the maximum amount of time
43 * ACK-eliciting packet. The peer communicates this value via a transport
49 * Configures the TX-side maximum ACK delay. This is the maximum amount of time
50 * we are allowed to delay sending an ACK frame after receiving an ACK-eliciting
65 /* The time at which the packet was sent. */
66 OSSL_TIME time; member
81 * One of the QUIC_PN_SPACE_* values. This qualifies the pkt_num field
96 * 1 if the packet has one or more ACK-eliciting frames.
119 * (Internal use fields; must be zero-initialized.)
122 * a singly-linked list of newly-acknowledged packets, and lnext is used to
123 * manifest a singly-linked list of newly lost packets.
143 /* The time at which the packet was received. */
144 OSSL_TIME time; member
147 * One of the QUIC_PN_SPACE_* values. This qualifies the pkt_num field
152 /* 1 if the packet has one or more ACK-eliciting frames. */
156 * One of the OSSL_ACKM_ECN_* values. This is the ECN labelling applied to
169 * ACKM if you want in-flight packets to have their discarded callbacks called.
183 * one should currently be sent.
201 * sent at this time. ossl_ackm_get_ack_frame will always provide an ACK frame
206 * ossl_ackm_on_rx_packet and based on the passage of time (see
212 * Returns 1 if the given RX PN is 'processable'. A processable PN is one that
215 * - duplicate, meaning that we have already been passed such a PN in a call
218 * - written off, meaning that the PN is so old we have stopped tracking state
234 * The following two probe request types are used only for anti-deadlock
235 * purposes in relation to the anti-amplification logic, by generating
236 * packets to buy ourselves more anti-amplification credit with the server
240 * Note: The ACKM will only ever increase these by one at a time,
241 * as only one probe packet should be generated for these cases.
246 * Send an ACK-eliciting packet for each count here.
248 * Note: The ACKM may increase this by either one or two for each probe
258 * by one every time the ACKM wants another probe of the given type to be sent.
275 * as having been pseudo-lost. The main reason to use this is during a Retry, to
286 * Returns the PTO duration as currently calculated. This is a quantity of time.