HomeSort by: relevance | last modified time | path
    Searched refs:urxe (Results 1 - 8 of 8) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_demux.c 62 * user calls ossl_quic_demux_release_urxe to return the URXE to us, at
178 /* Never attempt to resize a URXE which is not on the free list. */
234 * Precondition: at least one URXE is free
241 QUIC_URXE *urxe = ossl_list_urxe_head(&demux->urx_free), *unext; local
244 /* This should never be called when we have any pending URXE. */
246 assert(urxe->demux_state == URXE_DEMUX_STATE_FREE);
259 ++i, urxe = ossl_list_urxe_next(urxe)) {
260 if (urxe == NULL) {
261 /* We need at least one URXE to receive into. *
416 QUIC_URXE *urxe; local
    [all...]
quic_demux.c 62 * user calls ossl_quic_demux_release_urxe to return the URXE to us, at
178 /* Never attempt to resize a URXE which is not on the free list. */
234 * Precondition: at least one URXE is free
241 QUIC_URXE *urxe = ossl_list_urxe_head(&demux->urx_free), *unext; local
244 /* This should never be called when we have any pending URXE. */
246 assert(urxe->demux_state == URXE_DEMUX_STATE_FREE);
259 ++i, urxe = ossl_list_urxe_next(urxe)) {
260 if (urxe == NULL) {
261 /* We need at least one URXE to receive into. *
416 QUIC_URXE *urxe; local
    [all...]
quic_record_rx.c 55 /* Addresses copied from URXE. */
270 void ossl_qrx_inject_urxe(OSSL_QRX *qrx, QUIC_URXE *urxe)
272 /* Initialize our own fields inside the URXE and add to the pending list. */
273 urxe->processed = 0;
274 urxe->hpr_removed = 0;
275 urxe->deferred = 0;
276 ossl_list_urxe_insert_tail(&qrx->urx_pending, urxe);
279 qrx->msg_callback(0, OSSL_QUIC1_VERSION, SSL3_RT_QUIC_DATAGRAM, urxe + 1,
280 urxe->data_len, qrx->msg_callback_ssl,
305 static int qrx_validate_initial_pkt(OSSL_QRX *qrx, QUIC_URXE *urxe,
    [all...]
quic_record_rx.c 55 /* Addresses copied from URXE. */
270 void ossl_qrx_inject_urxe(OSSL_QRX *qrx, QUIC_URXE *urxe)
272 /* Initialize our own fields inside the URXE and add to the pending list. */
273 urxe->processed = 0;
274 urxe->hpr_removed = 0;
275 urxe->deferred = 0;
276 ossl_list_urxe_insert_tail(&qrx->urx_pending, urxe);
279 qrx->msg_callback(0, OSSL_QUIC1_VERSION, SSL3_RT_QUIC_DATAGRAM, urxe + 1,
280 urxe->data_len, qrx->msg_callback_ssl,
305 static int qrx_validate_initial_pkt(OSSL_QRX *qrx, QUIC_URXE *urxe,
    [all...]
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_demux.h 31 * a QRX instance and injecting the URXE into that QRX.
50 * The URXE queue is designed to allow multiple datagrams to be received in a
53 * One URXE is used per received datagram. Each datagram may contain multiple
64 * Rather than defining an opaque interface, the URXE structure internals
69 * - Fields in the URXE can be allocated to support requirements in other
71 * memory corresponding to each URXE.
73 * - Other components, like the QRX, can keep the URXE in queues of its own
79 * The URXE queue is maintained as a simple doubly-linked list. URXE entries are
82 * received immediately follows this URXE header structure and is part of th
    [all...]
quic_demux.h 31 * a QRX instance and injecting the URXE into that QRX.
50 * The URXE queue is designed to allow multiple datagrams to be received in a
53 * One URXE is used per received datagram. Each datagram may contain multiple
64 * Rather than defining an opaque interface, the URXE structure internals
69 * - Fields in the URXE can be allocated to support requirements in other
71 * memory corresponding to each URXE.
73 * - Other components, like the QRX, can keep the URXE in queues of its own
79 * The URXE queue is maintained as a simple doubly-linked list. URXE entries are
82 * received immediately follows this URXE header structure and is part of th
    [all...]
quic_record_rx.h 333 * Forcibly injects a URXE which has been issued by the DEMUX into the QRX for
341 int ossl_qrx_validate_initial_packet(OSSL_QRX *qrx, QUIC_URXE *urxe,
quic_record_rx.h 333 * Forcibly injects a URXE which has been issued by the DEMUX into the QRX for
341 int ossl_qrx_validate_initial_packet(OSSL_QRX *qrx, QUIC_URXE *urxe,

Completed in 50 milliseconds