Searched refs:quic_method (Results 1 – 6 of 6) sorted by relevance
6 SOURCE[$LIBSSL]=quic_method.c quic_impl.c quic_wire.c quic_ackm.c quic_statm.c
37 SRCS+= quic_method.c quic_impl.c quic_wire.c quic_ackm.c quic_statm.c
209 static SSL_QUIC_METHOD quic_method; variable1370 memset(&quic_method, 0, sizeof(quic_method));1371 quic_method.set_encryption_secrets = &set_encryption_secrets;1372 quic_method.add_handshake_data = &add_handshake_data;1373 quic_method.flush_flight = &flush_flight;1374 quic_method.send_alert = &send_alert;1375 SSL_CTX_set_quic_method(ctx, &quic_method);
4646 SSL_QUIC_METHOD* quic_method; in quic_sslctx_create() local4722 quic_method = calloc(1, sizeof(SSL_QUIC_METHOD)); in quic_sslctx_create()4723 if(!quic_method) { in quic_sslctx_create()4728 doq_socket->quic_method = quic_method; in quic_sslctx_create()4729 quic_method->set_encryption_secrets = doq_set_encryption_secrets; in quic_sslctx_create()4730 quic_method->add_handshake_data = doq_add_handshake_data; in quic_sslctx_create()4731 quic_method->flush_flight = doq_flush_flight; in quic_sslctx_create()4732 quic_method->send_alert = doq_send_alert; in quic_sslctx_create()4733 SSL_CTX_set_quic_method(ctx, doq_socket->quic_method); in quic_sslctx_create()
1071 void* quic_method; member
2792 free(doq_socket->quic_method);