HomeSort by: relevance | last modified time | path
    Searched defs:qtx (Results 1 - 4 of 4) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_txp.h 40 OSSL_QTX *qtx; /* QUIC Record Layer TX we are using */ member in struct:ossl_quic_tx_packetiser_args_st
168 * This does not inform the QTX as well; the caller must also inform the QTX.
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_channel_local.h 118 OSSL_QTX *qtx; member in struct:quic_channel_st
283 * QTX key epoch is greater than 0. Once a packet we sent with a PN p (p >=
364 * We don't store the current EL here; the TXP asks the QTX which ELs
quic_record_tx.c 51 * QTX
112 /* Instantiates a new QTX. */
115 OSSL_QTX *qtx; local
120 qtx = OPENSSL_zalloc(sizeof(OSSL_QTX));
121 if (qtx == NULL)
124 qtx->libctx = args->libctx;
125 qtx->propq = args->propq;
126 qtx->bio = args->bio;
127 qtx->mdpl = args->mdpl;
128 qtx->get_qlog_cb = args->get_qlog_cb
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
quic_record_test.c 3817 OSSL_QTX *qtx = NULL; local
3823 if (!TEST_ptr(qtx = ossl_qtx_new(&args)))
3829 if (!TEST_true(ossl_qtx_provide_secret(qtx, op->enc_level,
3838 NULL, qtx)))
3842 if (!TEST_true(ossl_qtx_discard_enc_level(qtx, op->enc_level)))
3851 max_value = ossl_qtx_get_max_epoch_pkt_count(qtx, enc_level);
3856 old_value = ossl_qtx_get_cur_epoch_pkt_count(qtx, enc_level);
3861 if (!TEST_true(ossl_qtx_write_pkt(qtx, op->pkt)))
3865 new_value = ossl_qtx_get_cur_epoch_pkt_count(qtx, enc_level);
3871 if (!TEST_true(ossl_qtx_pop_net(qtx, &msg))
    [all...]

Completed in 21 milliseconds