| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| quic_record_tx.h | 49 /* Maximum datagram payload length (MDPL) for TX purposes. */ 50 size_t mdpl; member in struct:ossl_qtx_args_st 309 /* Changes the MDPL. */ 310 int ossl_qtx_set_mdpl(OSSL_QTX *qtx, size_t mdpl); 312 /* Retrieves the current MDPL. */
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_cc_test.c | 335 size_t mdpl = 1472; local 355 &mdpl); 373 if (!TEST_uint64_t_ge(allowance = ccm->get_tx_allowance(cc), mdpl)) 393 sz = allowance > mdpl ? mdpl : allowance; 419 * have at least one MDPL's worth of allowance as nothing is in flight. 425 if (!TEST_uint64_t_ge(ccm->get_tx_allowance(cc), mdpl)) 492 size_t mdpl = 1472, diag_mdpl = SIZE_MAX; local 502 &mdpl);
|
| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_record_tx.c | 69 size_t mdpl; member in struct:ossl_qtx_st 117 if (args->mdpl < QUIC_MIN_INITIAL_DGRAM_LEN) 127 qtx->mdpl = args->mdpl; 452 /* Any other error (including packet being too big for MDPL). */ 737 txe = qtx_ensure_free_txe(qtx, qtx->mdpl); 839 * Ensure TXE has at least MDPL bytes allocated. This should only be 840 * possible if the MDPL has increased. 842 if (!qtx_reserve_txe(qtx, NULL, txe, qtx->mdpl)) 1024 int ossl_qtx_set_mdpl(OSSL_QTX *qtx, size_t mdpl) [all...] |
| quic_txp.c | 602 * current MDPL, returning 1 if it is OK. 606 * a server in a Retry packet which is bigger than the MDPL. In this case it is 630 static int txp_check_token_len(size_t token_len, size_t mdpl) 635 if (token_len >= mdpl) 638 if (TXP_REQUIRED_TOKEN_MARGIN >= mdpl) 639 /* (should not be possible because MDPL must be at least 1200) */ 642 if (token_len > mdpl - TXP_REQUIRED_TOKEN_MARGIN) 808 * are using a link with a MDPL of 1200 bytes, the minimum allowed by 1311 size_t mdpl, cmpl, hdr_len; local 1363 /* MDPL: Maximum datagram payload length. * [all...] |