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

  /src/crypto/external/apache2/openssl/dist/test/
quic_rcidm_test.c 27 QUIC_RCIDM *rcidm; local
42 if (!TEST_ptr(rcidm = ossl_quic_rcidm_new(odcid)))
47 !TEST_true(ossl_quic_rcidm_get_preferred_tx_dcid_changed(rcidm, 1))
48 || !TEST_false(ossl_quic_rcidm_get_preferred_tx_dcid_changed(rcidm, 0))
49 || !TEST_true(ossl_quic_rcidm_get_preferred_tx_dcid(rcidm, &dcid_out))
52 || !TEST_size_t_eq(ossl_quic_rcidm_get_num_active(rcidm), 0))
55 if (!TEST_false(ossl_quic_rcidm_get_preferred_tx_dcid(rcidm, &dcid_out))
56 || !TEST_size_t_eq(ossl_quic_rcidm_get_num_active(rcidm), 0))
61 if (!TEST_true(ossl_quic_rcidm_add_from_server_retry(rcidm, &cid8_5))
62 || !TEST_true(ossl_quic_rcidm_get_preferred_tx_dcid_changed(rcidm, 1)
    [all...]
  /src/crypto/external/apache2/openssl/dist/fuzz/
quic-rcidm.c 78 QUIC_RCIDM *rcidm = NULL; local
88 if ((rcidm = ossl_quic_rcidm_new(NULL)) == NULL)
102 ossl_quic_rcidm_free(rcidm);
104 if ((rcidm = ossl_quic_rcidm_new(&arg_cid)) == NULL)
110 ossl_quic_rcidm_free(rcidm);
112 if ((rcidm = ossl_quic_rcidm_new(NULL)) == NULL)
123 ossl_quic_rcidm_add_from_initial(rcidm, &arg_cid);
132 ossl_quic_rcidm_add_from_server_retry(rcidm, &arg_cid);
143 ossl_quic_rcidm_add_from_ncid(rcidm, &ncid_frame);
147 ossl_quic_rcidm_on_handshake_complete(rcidm);
    [all...]
  /src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_rcidm.c 36 static void rcidm_update(QUIC_RCIDM *rcidm);
37 static void rcidm_set_preferred_rcid(QUIC_RCIDM *rcidm,
79 * the RCID is not the current RCID, rcidm->cur_rcid != rcid;
87 * the RCID is the current RCID, rcidm->cur_rcid == rcid;
95 * the RCID is not the current RCID, rcidm->cur_rcid != rcid;
108 * user of the RCIDM and happens after the above state machine is terminated.
143 * The following "business logic" invariants also apply to the RCIDM
150 * added throughout the lifetime of an RCIDM.
152 * added throughout the lifetime of an RCIDM.
154 * throughout the lifetime of an RCIDM
284 QUIC_RCIDM *rcidm; local
    [all...]

Completed in 14 milliseconds