/openssl/ssl/quic/ |
H A D | quic_tserver.c | 441 uint64_t *app_error_code) in ossl_quic_tserver_stream_has_peer_stop_sending() argument 450 if (qs->peer_stop_sending && app_error_code != NULL) in ossl_quic_tserver_stream_has_peer_stop_sending() 451 *app_error_code = qs->peer_stop_sending_aec; in ossl_quic_tserver_stream_has_peer_stop_sending() 458 uint64_t *app_error_code) in ossl_quic_tserver_stream_has_peer_reset_stream() argument 467 if (ossl_quic_stream_recv_is_reset(qs) && app_error_code != NULL) in ossl_quic_tserver_stream_has_peer_reset_stream() 468 *app_error_code = qs->peer_reset_stream_aec; in ossl_quic_tserver_stream_has_peer_reset_stream() 524 int ossl_quic_tserver_shutdown(QUIC_TSERVER *srv, uint64_t app_error_code) in ossl_quic_tserver_shutdown() argument 526 ossl_quic_channel_local_close(srv->ch, app_error_code, NULL); in ossl_quic_tserver_shutdown()
|
H A D | quic_wire.c | 108 || !WPACKET_quic_write_vlint(pkt, f->app_error_code) in ossl_quic_wire_encode_frame_reset_stream() 120 || !WPACKET_quic_write_vlint(pkt, f->app_error_code)) in ossl_quic_wire_encode_frame_stop_sending() 606 || !PACKET_get_quic_vlint(pkt, &f->app_error_code) in ossl_quic_wire_decode_frame_reset_stream() 618 || !PACKET_get_quic_vlint(pkt, &f->app_error_code)) in ossl_quic_wire_decode_frame_stop_sending()
|
H A D | quic_impl.c | 3692 uint64_t *app_error_code) in quic_classify_stream() argument 3699 if (app_error_code != NULL) in quic_classify_stream() 3700 *app_error_code = UINT64_MAX; in quic_classify_stream() 3702 app_error_code = &final_size; /* throw away value */ in quic_classify_stream() 3724 *app_error_code = !is_write in quic_classify_stream() 3732 *app_error_code = !is_write in quic_classify_stream() 3780 uint64_t *app_error_code) in quic_get_stream_error_code() argument 3789 &state, app_error_code); in quic_get_stream_error_code() 3803 int ossl_quic_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code) in ossl_quic_get_stream_read_error_code() argument 3805 return quic_get_stream_error_code(ssl, /*is_write=*/0, app_error_code); in ossl_quic_get_stream_read_error_code() [all …]
|
H A D | qlog_event_helpers.c | 272 QLOG_U64("error_code", f.app_error_code); in log_frame_actual() 285 QLOG_U64("error_code", f.app_error_code); in log_frame_actual()
|
H A D | quic_trace.c | 132 (unsigned long long)frame_data.app_error_code); in frame_reset_stream() 149 (unsigned long long)frame_data.app_error_code); in frame_stop_sending()
|
H A D | quic_rx_depack.c | 210 frame_data.app_error_code, in depack_do_frame_reset_stream() 250 stream->peer_stop_sending_aec = frame_data.app_error_code; in depack_do_frame_stop_sending() 258 frame_data.app_error_code); in depack_do_frame_stop_sending()
|
H A D | quic_stream_map.c | 593 uint64_t app_error_code, in ossl_quic_stream_map_notify_reset_recv_part() argument 613 qs->peer_reset_stream_aec = app_error_code; in ossl_quic_stream_map_notify_reset_recv_part()
|
H A D | quic_txp.c | 2433 f.app_error_code = stream->stop_sending_aec; in txp_generate_stream_related() 2459 f.app_error_code = stream->reset_stream_aec; in txp_generate_stream_related()
|
H A D | quic_channel.c | 2625 void ossl_quic_channel_local_close(QUIC_CHANNEL *ch, uint64_t app_error_code, in ossl_quic_channel_local_close() argument 2634 tcause.error_code = app_error_code; in ossl_quic_channel_local_close()
|
/openssl/include/internal/ |
H A D | quic_tserver.h | 144 uint64_t *app_error_code); 152 uint64_t *app_error_code); 185 int ossl_quic_tserver_shutdown(QUIC_TSERVER *srv, uint64_t app_error_code);
|
H A D | quic_ssl.h | 100 uint64_t *app_error_code); 102 uint64_t *app_error_code);
|
H A D | quic_wire.h | 199 uint64_t app_error_code; member 206 uint64_t app_error_code; member
|
H A D | quic_channel.h | 208 void ossl_quic_channel_local_close(QUIC_CHANNEL *ch, uint64_t app_error_code,
|
H A D | quic_stream_map.h | 785 uint64_t app_error_code,
|
/openssl/demos/http3/ |
H A D | ossl-nghttp3.c | 161 uint64_t app_error_code, in h3_conn_stream_close() argument 169 ret = conn->stream_close_cb(h3conn, stream_id, app_error_code, in h3_conn_stream_close() 177 uint64_t app_error_code, in h3_conn_stop_sending() argument 185 ret = conn->stop_sending_cb(h3conn, stream_id, app_error_code, in h3_conn_stop_sending() 194 uint64_t app_error_code, in h3_conn_reset_stream() argument 203 ret = conn->reset_stream_cb(h3conn, stream_id, app_error_code, in h3_conn_reset_stream() 207 args.quic_error_code = app_error_code; in h3_conn_reset_stream()
|
/openssl/doc/man3/ |
H A D | SSL_set_incoming_stream_policy.pod | 19 uint64_t app_error_code); 30 I<app_error_code> is an application error code which will be used in any QUIC
|
H A D | SSL_get_stream_read_state.pod | 27 int SSL_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code); 28 int SSL_get_stream_write_error_code(SSL *ssl, uint64_t *app_error_code); 118 application error code is written to I<*app_error_code>.
|
/openssl/test/ |
H A D | quic_txp_test.c | 1018 || !TEST_uint64_t_eq(h->frame.stop_sending.app_error_code, 4568)) in check_stream_12() 1050 || !TEST_uint64_t_eq(h->frame.reset_stream.app_error_code, 4568) in check_stream_13()
|
/openssl/ssl/ |
H A D | ssl_lib.c | 7801 int SSL_get_stream_read_error_code(SSL *s, uint64_t *app_error_code) in SSL_get_stream_read_error_code() argument 7807 return ossl_quic_get_stream_read_error_code(s, app_error_code); in SSL_get_stream_read_error_code() 7813 int SSL_get_stream_write_error_code(SSL *s, uint64_t *app_error_code) in SSL_get_stream_write_error_code() argument 7819 return ossl_quic_get_stream_write_error_code(s, app_error_code); in SSL_get_stream_write_error_code()
|
/openssl/doc/designs/quic-design/ |
H A D | quic-api.md | 808 int SSL_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code); 809 int SSL_get_stream_write_error_code(SSL *ssl, uint64_t *app_error_code); 821 applicable application error code to `*app_error_code`.
|
/openssl/include/openssl/ |
H A D | ssl.h.in | 2364 __owur int SSL_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code); 2365 __owur int SSL_get_stream_write_error_code(SSL *ssl, uint64_t *app_error_code);
|