Lines Matching refs:QUIC_PORT

25 static int port_init(QUIC_PORT *port);
26 static void port_cleanup(QUIC_PORT *port);
30 static void port_rx_pre(QUIC_PORT *port);
33 DEFINE_LIST_OF_IMPL(port, QUIC_PORT);
35 QUIC_PORT *ossl_quic_port_new(const QUIC_PORT_ARGS *args) in ossl_quic_port_new()
37 QUIC_PORT *port; in ossl_quic_port_new()
39 if ((port = OPENSSL_zalloc(sizeof(QUIC_PORT))) == NULL) in ossl_quic_port_new()
54 void ossl_quic_port_free(QUIC_PORT *port) in ossl_quic_port_free()
63 static int port_init(QUIC_PORT *port) in port_init()
103 static void port_cleanup(QUIC_PORT *port) in port_cleanup()
125 static void port_transition_failed(QUIC_PORT *port) in port_transition_failed()
133 int ossl_quic_port_is_running(const QUIC_PORT *port) in ossl_quic_port_is_running()
138 QUIC_ENGINE *ossl_quic_port_get0_engine(QUIC_PORT *port) in ossl_quic_port_get0_engine()
143 QUIC_REACTOR *ossl_quic_port_get0_reactor(QUIC_PORT *port) in ossl_quic_port_get0_reactor()
148 QUIC_DEMUX *ossl_quic_port_get0_demux(QUIC_PORT *port) in ossl_quic_port_get0_demux()
153 CRYPTO_MUTEX *ossl_quic_port_get0_mutex(QUIC_PORT *port) in ossl_quic_port_get0_mutex()
158 OSSL_TIME ossl_quic_port_get_time(QUIC_PORT *port) in ossl_quic_port_get_time()
165 return ossl_quic_port_get_time((QUIC_PORT *)port); in get_time()
168 int ossl_quic_port_get_rx_short_dcid_len(const QUIC_PORT *port) in ossl_quic_port_get_rx_short_dcid_len()
173 int ossl_quic_port_get_tx_init_dcid_len(const QUIC_PORT *port) in ossl_quic_port_get_tx_init_dcid_len()
194 BIO *ossl_quic_port_get_net_rbio(QUIC_PORT *port) in ossl_quic_port_get_net_rbio()
199 BIO *ossl_quic_port_get_net_wbio(QUIC_PORT *port) in ossl_quic_port_get_net_wbio()
204 static int port_update_poll_desc(QUIC_PORT *port, BIO *net_bio, int for_write) in port_update_poll_desc()
234 int ossl_quic_port_update_poll_descriptors(QUIC_PORT *port) in ossl_quic_port_update_poll_descriptors()
253 int ossl_quic_port_set_net_rbio(QUIC_PORT *port, BIO *net_rbio) in ossl_quic_port_set_net_rbio()
266 int ossl_quic_port_set_net_wbio(QUIC_PORT *port, BIO *net_wbio) in ossl_quic_port_set_net_wbio()
288 static SSL *port_new_handshake_layer(QUIC_PORT *port) in port_new_handshake_layer()
306 static QUIC_CHANNEL *port_make_channel(QUIC_PORT *port, SSL *tls, int is_server) in port_make_channel()
335 QUIC_CHANNEL *ossl_quic_port_create_outgoing(QUIC_PORT *port, SSL *tls) in ossl_quic_port_create_outgoing()
340 QUIC_CHANNEL *ossl_quic_port_create_incoming(QUIC_PORT *port, SSL *tls) in ossl_quic_port_create_incoming()
361 void ossl_quic_port_subtick(QUIC_PORT *port, QUIC_TICK_RESULT *res, in ossl_quic_port_subtick()
386 static void port_rx_pre(QUIC_PORT *port) in port_rx_pre()
429 static void port_on_new_conn(QUIC_PORT *port, const BIO_ADDR *peer, in port_on_new_conn()
445 static int port_try_handle_stateless_reset(QUIC_PORT *port, const QUIC_URXE *e) in port_try_handle_stateless_reset()
498 QUIC_PORT *port = arg; in port_default_packet_handler()
584 void ossl_quic_port_raise_net_error(QUIC_PORT *port, in ossl_quic_port_raise_net_error()
611 void ossl_quic_port_restore_err_state(const QUIC_PORT *port) in ossl_quic_port_restore_err_state()