Lines Matching refs:fault

15 fault) into an otherwise normal QUIC connection. Therefore the fault injector
201 * make changes to the contents of structure objects as required and the fault
212 * keyfile, create a server and client instances as well as a fault injector
218 OSSL_QUIC_FAULT **fault, BIO **tracebio);
223 void ossl_quic_fault_free(OSSL_QUIC_FAULT *fault);
252 typedef int (*ossl_quic_fault_on_packet_plain_cb)(OSSL_QUIC_FAULT *fault,
258 int ossl_quic_fault_set_packet_plain_listener(OSSL_QUIC_FAULT *fault,
271 int ossl_quic_fault_resize_plain_packet(OSSL_QUIC_FAULT *fault, size_t newlen);
277 int ossl_quic_fault_prepend_frame(OSSL_QUIC_FAULT *fault, unsigned char *frame,
284 typedef int (*ossl_quic_fault_on_handshake_cb)(OSSL_QUIC_FAULT *fault,
289 int ossl_quic_fault_set_handshake_listener(OSSL_QUIC_FAULT *fault,
302 int ossl_quic_fault_resize_handshake(OSSL_QUIC_FAULT *fault, size_t newlen);
315 typedef int (*ossl_quic_fault_on_enc_ext_cb)(OSSL_QUIC_FAULT *fault,
320 int ossl_quic_fault_set_hand_enc_ext_listener(OSSL_QUIC_FAULT *fault,
335 int ossl_quic_fault_resize_message(OSSL_QUIC_FAULT *fault, size_t newlen);
343 int ossl_quic_fault_delete_extension(OSSL_QUIC_FAULT *fault,
356 typedef int (*ossl_quic_fault_on_packet_cipher_cb)(OSSL_QUIC_FAULT *fault,
365 int ossl_quic_fault_set_packet_cipher_listener(OSSL_QUIC_FAULT *fault,
372 typedef int (*ossl_quic_fault_on_datagram_cb)(OSSL_QUIC_FAULT *fault,
377 int ossl_quic_fault_set_datagram_listener(OSSL_QUIC_FAULT *fault,
387 int ossl_quic_fault_resize_datagram(OSSL_QUIC_FAULT *fault, size_t newlen);
406 static int add_unknown_frame_cb(OSSL_QUIC_FAULT *fault, QUIC_PKT_HDR *hdr,
423 return ossl_quic_fault_prepend_frame(fault, unknown_frame,
437 OSSL_QUIC_FAULT *fault = NULL;
443 &qtserv, &cssl, &fault, NULL)))
453 if (!TEST_true(ossl_quic_fault_set_packet_plain_listener(fault,
484 ossl_quic_fault_free(fault);
502 static int drop_transport_params_cb(OSSL_QUIC_FAULT *fault,
506 if (!ossl_quic_fault_delete_extension(fault,
520 OSSL_QUIC_FAULT *fault = NULL;
526 &qtserv, &cssl, &fault, NULL)))
529 if (!TEST_true(ossl_quic_fault_set_hand_enc_ext_listener(fault,
546 ossl_quic_fault_free(fault);