Home
last modified time | relevance | path

Searched refs:quic_method (Results 1 – 6 of 6) sorted by relevance

/src/crypto/openssl/ssl/quic/
H A Dbuild.info6 SOURCE[$LIBSSL]=quic_method.c quic_impl.c quic_wire.c quic_ackm.c quic_statm.c
/src/secure/lib/libssl/
H A DMakefile37 SRCS+= quic_method.c quic_impl.c quic_wire.c quic_ackm.c quic_statm.c
/src/contrib/unbound/testcode/
H A Ddoqclient.c209 static SSL_QUIC_METHOD quic_method; variable
1370 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);
/src/contrib/unbound/services/
H A Dlisten_dnsport.c4646 SSL_QUIC_METHOD* quic_method; in quic_sslctx_create() local
4722 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()
/src/contrib/unbound/util/
H A Dnetevent.h1071 void* quic_method; member
H A Dnetevent.c2792 free(doq_socket->quic_method);