| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| qlog_event_helpers.h | 14 #include "internal/qlog.h" 22 void ossl_qlog_event_connectivity_connection_started(QLOG *qlog, 26 void ossl_qlog_event_connectivity_connection_state_updated(QLOG *qlog, 33 void ossl_qlog_event_connectivity_connection_closed(QLOG *qlog, 37 void ossl_qlog_event_recovery_packet_lost(QLOG *qlog, 41 void ossl_qlog_event_transport_packet_sent(QLOG *qlog [all...] |
| qlog.h | 17 typedef struct qlog_st QLOG; 41 QLOG *ossl_qlog_new(const QLOG_TRACE_INFO *info); 42 QLOG *ossl_qlog_new_from_env(const QLOG_TRACE_INFO *info); 44 void ossl_qlog_free(QLOG *qlog); 47 int ossl_qlog_set_event_type_enabled(QLOG *qlog, uint32_t event_type, 49 int ossl_qlog_set_filter(QLOG *qlog, const char *filter); 51 int ossl_qlog_set_sink_bio(QLOG *qlog, BIO *bio) [all...] |
| quic_fifd.h | 19 #include "internal/qlog.h" 49 QLOG *(*get_qlog_cb)(void *arg); 76 QLOG *(*get_qlog_cb)(void *arg), 83 void ossl_quic_fifd_set_qlog_cb(QUIC_FIFD *fifd, QLOG *(*get_qlog_cb)(void *arg),
|
| quic_record_tx.h | 18 #include "internal/qlog.h" 52 /* Callback returning QLOG instance to use, or NULL. */ 53 QLOG *(*get_qlog_cb)(void *arg); 72 /* Change QLOG instance retrieval callback in use after instantiation. */ 73 void ossl_qtx_set_qlog_cb(OSSL_QTX *qtx, QLOG *(*get_qlog_cb)(void *arg),
|
| quic_txp.h | 24 #include "internal/qlog.h" 53 QLOG *(*get_qlog_cb)(void *arg); /* Optional QLOG retrieval func */ 159 * Change the QLOG instance retrieval function in use after instantiation. 162 QLOG *(*get_qlog_cb)(void *arg),
|
| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| qlog.c | 10 #include "internal/qlog.h" 55 QLOG *ossl_qlog_new(const QLOG_TRACE_INFO *info) 57 QLOG *qlog = OPENSSL_zalloc(sizeof(QLOG)); local 59 if (qlog == NULL) 62 qlog->info.odcid = info->odcid; 63 qlog->info.is_server = info->is_server; 64 qlog->info.now_cb = info->now_cb; 65 qlog->info.now_cb_arg = info->now_cb_arg 108 QLOG *qlog = NULL; local [all...] |
| qlog_event_helpers.c | 16 void ossl_qlog_event_connectivity_connection_started(QLOG *qlog, 20 QLOG_EVENT_BEGIN(qlog, connectivity, connection_started) 57 void ossl_qlog_event_connectivity_connection_state_updated(QLOG *qlog, 66 QLOG_EVENT_BEGIN(qlog, connectivity, connection_state_updated) 119 void ossl_qlog_event_connectivity_connection_closed(QLOG *qlog, 123 QLOG_EVENT_BEGIN(qlog, connectivity, connection_closed) 137 /* TODO(QLOG FUTURE): Consider adding ERR information in the output. * [all...] |
| quic_fifd.c | 39 QLOG *(*get_qlog_cb)(void *arg), 115 static QLOG *fifd_get_qlog(QUIC_FIFD *fifd) 307 void ossl_quic_fifd_set_qlog_cb(QUIC_FIFD *fifd, QLOG *(*get_qlog_cb)(void *arg),
|
| quic_channel_local.h | 57 /* Optional QLOG instance (or NULL). */ 58 QLOG *qlog; member in struct:quic_channel_st 455 /* Has qlog been requested? */ 458 /* Has qlog been requested? */ 468 /* Title for qlog purposes. We own this copy. */
|
| quic_record_tx.c | 64 /* QLOG instance retrieval callback if in use, or NULL. */ 65 QLOG *(*get_qlog_cb)(void *arg); 173 void ossl_qtx_set_qlog_cb(OSSL_QTX *qtx, QLOG *(*get_qlog_cb)(void *arg), 748 static QLOG *qtx_get_qlog(OSSL_QTX *qtx)
|
| quic_channel.c | 105 static QLOG *ch_get_qlog(QUIC_CHANNEL *ch) 110 if (ch->qlog != NULL) 111 return ch->qlog; 126 if ((ch->qlog = ossl_qlog_new_from_env(&qti)) == NULL) { 131 return ch->qlog; 138 static QLOG *ch_get_qlog_cb(void *arg) 435 if (ch->qlog != NULL) 436 ossl_qlog_flush(ch->qlog); /* best effort */ 439 ossl_qlog_free(ch->qlog); 3651 /* Setup QLOG, which did not happen earlier due to lacking an Initial ODCID. * [all...] |
| quic_txp.c | 722 QLOG *(*get_qlog_cb)(void *arg),
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_qlog_test.c | 10 #include "internal/qlog.h" 81 QLOG *qlog; local 97 if (!TEST_ptr(qlog = ossl_qlog_new(&qti))) 100 if (!TEST_true(ossl_qlog_set_event_type_enabled(qlog, QLOG_EVENT_TYPE_transport_packet_sent, 1))) 106 if (!TEST_true(ossl_qlog_set_sink_bio(qlog, bio))) 109 QLOG_EVENT_BEGIN(qlog, transport, packet_sent) 129 QLOG_EVENT_BEGIN(qlog, transport, packet_received) 134 QLOG_EVENT_BEGIN(qlog, transport, packet_sent) 138 if (!TEST_true(ossl_qlog_flush(qlog))) 220 QLOG *qlog; local [all...] |