Home
last modified time | relevance | path

Searched refs:QUIC_CHANNEL (Results 1 – 19 of 19) sorted by relevance

/openssl/include/internal/
H A Dquic_channel.h181 void ossl_quic_channel_free(QUIC_CHANNEL *ch);
184 int ossl_quic_channel_set_mutator(QUIC_CHANNEL *ch,
205 int ossl_quic_channel_start(QUIC_CHANNEL *ch);
262 int ossl_quic_channel_net_error(QUIC_CHANNEL *ch);
270 void ossl_quic_channel_on_new_conn_id(QUIC_CHANNEL *ch,
283 void ossl_quic_channel_raise_net_error(QUIC_CHANNEL *ch);
322 int ossl_quic_channel_is_closing(const QUIC_CHANNEL *ch);
324 int ossl_quic_channel_is_active(const QUIC_CHANNEL *ch);
332 SSL *ossl_quic_channel_get0_ssl(QUIC_CHANNEL *ch);
402 int ossl_quic_channel_trigger_txku(QUIC_CHANNEL *ch);
[all …]
H A Dquic_port.h70 QUIC_CHANNEL *ossl_quic_port_create_outgoing(QUIC_PORT *port, SSL *tls);
77 QUIC_CHANNEL *ossl_quic_port_create_incoming(QUIC_PORT *port, SSL *tls);
138 QUIC_CHANNEL *triggering_ch);
H A Dquic_thread_assist.h46 QUIC_CHANNEL *ch;
61 QUIC_CHANNEL *ch,
H A Dquic_rx_depack.h17 int ossl_quic_handle_frames(QUIC_CHANNEL *qc, OSSL_QRX_PKT *qpacket);
H A Dquic_predef.h16 typedef struct quic_channel_st QUIC_CHANNEL; typedef
H A Dquic_tserver.h202 QUIC_CHANNEL *ossl_quic_tserver_get_channel(QUIC_TSERVER *srv);
H A Dquic_ssl.h131 QUIC_CHANNEL *ossl_quic_conn_get_channel(SSL *s);
/openssl/ssl/quic/
H A Dquic_channel.c144 QUIC_CHANNEL *ch = arg; in ch_get_qlog_cb()
421 QUIC_CHANNEL *ch = NULL; in ossl_quic_channel_new()
600 QUIC_CHANNEL *ch = arg; in get_time()
608 QUIC_CHANNEL *ch = arg; in get_stream_limit()
619 QUIC_CHANNEL *ch = arg; in rx_late_validate()
758 QUIC_CHANNEL *ch = arg; in rxku_detected()
844 QUIC_CHANNEL *ch = arg; in ch_on_txp_ack_tx()
865 QUIC_CHANNEL *ch = arg; in ch_on_crypto_send()
894 QUIC_CHANNEL *ch = arg; in ch_on_crypto_recv_record()
932 QUIC_CHANNEL *ch = arg; in ch_on_crypto_release_record()
[all …]
H A Dquic_rx_depack.c32 static int depack_do_implicit_stream_create(QUIC_CHANNEL *ch,
44 static int depack_do_frame_ping(PACKET *pkt, QUIC_CHANNEL *ch, in depack_do_frame_ping()
61 static int depack_do_frame_ack(PACKET *pkt, QUIC_CHANNEL *ch, in depack_do_frame_ack()
142 QUIC_CHANNEL *ch, in depack_do_frame_reset_stream()
218 QUIC_CHANNEL *ch, in depack_do_frame_stop_sending()
644 QUIC_CHANNEL *ch = arg; in update_streams()
651 QUIC_CHANNEL *ch = arg; in update_streams_bidi()
661 QUIC_CHANNEL *ch = arg; in update_streams_uni()
727 QUIC_CHANNEL *ch, in depack_do_frame_max_streams()
776 QUIC_CHANNEL *ch, in depack_do_frame_data_blocked()
[all …]
H A Dquic_port.c32 DEFINE_LIST_OF_IMPL(ch, QUIC_CHANNEL);
268 QUIC_CHANNEL *ch; in ossl_quic_port_set_net_wbio()
309 QUIC_CHANNEL *ch; in port_make_channel()
335 QUIC_CHANNEL *ossl_quic_port_create_outgoing(QUIC_PORT *port, SSL *tls) in ossl_quic_port_create_outgoing()
342 QUIC_CHANNEL *ch; in ossl_quic_port_create_incoming()
364 QUIC_CHANNEL *ch; in ossl_quic_port_subtick()
432 QUIC_CHANNEL **new_ch) in port_on_new_conn()
485 ossl_quic_channel_on_stateless_reset((QUIC_CHANNEL *)opaque); in port_try_handle_stateless_reset()
501 QUIC_CHANNEL *ch = NULL, *new_ch = NULL; in port_default_packet_handler()
585 QUIC_CHANNEL *triggering_ch) in ossl_quic_port_raise_net_error()
[all …]
H A Dquic_port_local.h28 DECLARE_LIST_OF(ch, QUIC_CHANNEL);
66 QUIC_CHANNEL *tserver_ch;
H A Dquic_thread_assist.c72 QUIC_CHANNEL *ch, in ossl_quic_thread_assist_init_start()
H A Dquic_local.h151 QUIC_CHANNEL *ch;
H A Dquic_tserver.c35 QUIC_CHANNEL *ch;
550 QUIC_CHANNEL *ossl_quic_tserver_get_channel(QUIC_TSERVER *srv) in ossl_quic_tserver_get_channel()
H A Dquic_impl.c4158 QUIC_CHANNEL *ossl_quic_conn_get_channel(SSL *s) in ossl_quic_conn_get_channel()
/openssl/doc/designs/quic-design/
H A Derror-handling.md73 There is an error stack in QUIC_CHANNEL which serves as temporary storage
76 QUIC_CHANNEL.
79 a permanent connection error, entries from the QUIC_CHANNEL error stack
81 the QUIC_CHANNEL error stack as well for possible further calls from
99 copied from the QUIC_CHANNEL after the failure. So if multiple threads
H A Dglossary.md16 terms of an underlying `QUIC_CHANNEL` object.
28 **Channel:** See `QUIC_CHANNEL`.
179 **QUIC_CHANNEL:** Internal object in the QUIC core implementation corresponding
183 `QUIC_STREAM` instances. The `QUIC_CHANNEL` code is fused tightly with the RXDP.
186 connection in the APL. It internally corresponds to a `QUIC_CHANNEL` object in
191 more `QUIC_PORT` instances, each of which owns zero or more `QUIC_CHANNEL`
195 a listening port/network BIO. Has zero or more child `QUIC_CHANNEL` objects
200 an API object. As such, a `QUIC_CONNECTION` is to a `QUIC_CHANNEL` what a
H A Dquic-api.md306 (`QUIC_CHANNEL` torn down, CSM reset).
/openssl/test/
H A Dquic_multistream_test.c407 QUIC_CHANNEL *ch = ossl_quic_conn_get_channel(h->c_conn); in override_key_update()
423 QUIC_CHANNEL *ch = ossl_quic_conn_get_channel(h->c_conn); in check_key_update_ge()
444 QUIC_CHANNEL *ch = ossl_quic_conn_get_channel(h->c_conn); in check_key_update_lt()
1644 QUIC_CHANNEL *ch = ossl_quic_conn_get_channel(h->c_conn); in run_script_worker()
1975 QUIC_CHANNEL *ch = ossl_quic_conn_get_channel(h->c_conn); in run_script_worker()
3414 QUIC_CHANNEL *ch = ossl_quic_tserver_get_channel(h->s_priv); in script_39_inject_plain()
3801 QUIC_CHANNEL *ch = ossl_quic_tserver_get_channel(ACQUIRE_S()); in force_ping()
3813 QUIC_CHANNEL *ch = ossl_quic_tserver_get_channel(ACQUIRE_S()); in wait_incoming_acks_increased()
5185 QUIC_CHANNEL *ch = ossl_quic_tserver_get_channel(ACQUIRE_S_NOHL()); in script_80_gen_new_conn_id()

Completed in 124 milliseconds