Lines Matching refs:txp_args
161 OSSL_QUIC_TX_PACKETISER_ARGS txp_args = {0}; in ch_init() local
260 txp_args.cur_scid = ch->init_scid; in ch_init()
261 txp_args.cur_dcid = ch->init_dcid; in ch_init()
262 txp_args.ack_delay_exponent = 3; in ch_init()
263 txp_args.qtx = ch->qtx; in ch_init()
264 txp_args.txpim = ch->txpim; in ch_init()
265 txp_args.cfq = ch->cfq; in ch_init()
266 txp_args.ackm = ch->ackm; in ch_init()
267 txp_args.qsm = &ch->qsm; in ch_init()
268 txp_args.conn_txfc = &ch->conn_txfc; in ch_init()
269 txp_args.conn_rxfc = &ch->conn_rxfc; in ch_init()
270 txp_args.max_streams_bidi_rxfc = &ch->max_streams_bidi_rxfc; in ch_init()
271 txp_args.max_streams_uni_rxfc = &ch->max_streams_uni_rxfc; in ch_init()
272 txp_args.cc_method = ch->cc_method; in ch_init()
273 txp_args.cc_data = ch->cc_data; in ch_init()
274 txp_args.now = get_time; in ch_init()
275 txp_args.now_arg = ch; in ch_init()
276 txp_args.get_qlog_cb = ch_get_qlog_cb; in ch_init()
277 txp_args.get_qlog_cb_arg = ch; in ch_init()
278 txp_args.protocol_version = QUIC_VERSION_1; in ch_init()
285 txp_args.crypto[pn_space] = ch->crypto_send[pn_space]; in ch_init()
288 ch->txp = ossl_quic_tx_packetiser_new(&txp_args); in ch_init()