Lines Matching refs:args
35 QUIC_PORT *ossl_quic_port_new(const QUIC_PORT_ARGS *args) in ossl_quic_port_new() argument
42 port->engine = args->engine; in ossl_quic_port_new()
43 port->channel_ctx = args->channel_ctx; in ossl_quic_port_new()
44 port->is_multi_conn = args->is_multi_conn; in ossl_quic_port_new()
308 QUIC_CHANNEL_ARGS args = {0}; in port_make_channel() local
311 args.port = port; in port_make_channel()
312 args.is_server = is_server; in port_make_channel()
313 args.tls = (tls != NULL ? tls : port_new_handshake_layer(port)); in port_make_channel()
314 args.lcidm = port->lcidm; in port_make_channel()
315 args.srtm = port->srtm; in port_make_channel()
316 if (args.tls == NULL) in port_make_channel()
320 args.use_qlog = 1; /* disabled if env not set */ in port_make_channel()
321 args.qlog_title = args.tls->ctx->qlog_title; in port_make_channel()
324 ch = ossl_quic_channel_new(&args); in port_make_channel()
327 SSL_free(args.tls); in port_make_channel()