| /src/crypto/openssl/ssl/quic/ |
| H A D | quic_tserver.c | 445 uint64_t *app_error_code) in ossl_quic_tserver_stream_has_peer_stop_sending() argument 454 if (qs->peer_stop_sending && app_error_code != NULL) in ossl_quic_tserver_stream_has_peer_stop_sending() 455 *app_error_code = qs->peer_stop_sending_aec; in ossl_quic_tserver_stream_has_peer_stop_sending() 462 uint64_t *app_error_code) in ossl_quic_tserver_stream_has_peer_reset_stream() argument 471 if (ossl_quic_stream_recv_is_reset(qs) && app_error_code != NULL) in ossl_quic_tserver_stream_has_peer_reset_stream() 472 *app_error_code = qs->peer_reset_stream_aec; in ossl_quic_tserver_stream_has_peer_reset_stream() 528 int ossl_quic_tserver_shutdown(QUIC_TSERVER *srv, uint64_t app_error_code) in ossl_quic_tserver_shutdown() argument 530 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() 604 || !PACKET_get_quic_vlint(pkt, &f->app_error_code) in ossl_quic_wire_decode_frame_reset_stream() 616 || !PACKET_get_quic_vlint(pkt, &f->app_error_code)) in ossl_quic_wire_decode_frame_stop_sending()
|
| H A D | qlog_event_helpers.c | 273 QLOG_U64("error_code", f.app_error_code); in log_frame_actual() 284 QLOG_U64("error_code", f.app_error_code); in log_frame_actual()
|
| H A D | quic_trace.c | 138 (unsigned long long)frame_data.app_error_code); in frame_reset_stream() 155 (unsigned long long)frame_data.app_error_code); in frame_stop_sending()
|
| H A D | quic_rx_depack.c | 211 frame_data.app_error_code, in depack_do_frame_reset_stream() 251 stream->peer_stop_sending_aec = frame_data.app_error_code; in depack_do_frame_stop_sending() 259 frame_data.app_error_code); in depack_do_frame_stop_sending()
|
| H A D | quic_impl.c | 4008 uint64_t *app_error_code) in quic_classify_stream() argument 4015 if (app_error_code != NULL) in quic_classify_stream() 4016 *app_error_code = UINT64_MAX; in quic_classify_stream() 4018 app_error_code = &final_size; /* throw away value */ in quic_classify_stream() 4040 *app_error_code = !is_write in quic_classify_stream() 4048 *app_error_code = !is_write in quic_classify_stream() 4095 uint64_t *app_error_code) in quic_get_stream_error_code() argument 4104 &state, app_error_code); in quic_get_stream_error_code() 4118 int ossl_quic_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code) in ossl_quic_get_stream_read_error_code() argument 4120 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 | quic_stream_map.c | 590 uint64_t app_error_code, in ossl_quic_stream_map_notify_reset_recv_part() argument 610 qs->peer_reset_stream_aec = app_error_code; in ossl_quic_stream_map_notify_reset_recv_part()
|
| H A D | quic_txp.c | 2519 f.app_error_code = stream->stop_sending_aec; in txp_generate_stream_related() 2545 f.app_error_code = stream->reset_stream_aec; in txp_generate_stream_related()
|
| H A D | quic_channel.c | 2871 void ossl_quic_channel_local_close(QUIC_CHANNEL *ch, uint64_t app_error_code, in ossl_quic_channel_local_close() argument 2880 tcause.error_code = app_error_code; in ossl_quic_channel_local_close()
|
| /src/crypto/openssl/include/internal/ |
| H A D | quic_tserver.h | 147 uint64_t *app_error_code); 155 uint64_t *app_error_code); 188 int ossl_quic_tserver_shutdown(QUIC_TSERVER *srv, uint64_t app_error_code);
|
| H A D | quic_wire.h | 187 uint64_t app_error_code; member 194 uint64_t app_error_code; member
|
| H A D | quic_ssl.h | 131 uint64_t *app_error_code); 133 uint64_t *app_error_code);
|
| H A D | quic_channel.h | 213 void ossl_quic_channel_local_close(QUIC_CHANNEL *ch, uint64_t app_error_code,
|
| H A D | quic_stream_map.h | 786 uint64_t app_error_code,
|
| /src/crypto/openssl/demos/http3/ |
| H A D | ossl-nghttp3.c | 163 uint64_t app_error_code, in h3_conn_stream_close() argument 171 ret = conn->stream_close_cb(h3conn, stream_id, app_error_code, in h3_conn_stream_close() 179 uint64_t app_error_code, in h3_conn_stop_sending() argument 187 ret = conn->stop_sending_cb(h3conn, stream_id, app_error_code, in h3_conn_stop_sending() 196 uint64_t app_error_code, in h3_conn_reset_stream() argument 205 ret = conn->reset_stream_cb(h3conn, stream_id, app_error_code, in h3_conn_reset_stream() 209 args.quic_error_code = app_error_code; in h3_conn_reset_stream()
|
| /src/crypto/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>.
|
| /src/crypto/openssl/test/ |
| H A D | quic_txp_test.c | 1040 || !TEST_uint64_t_eq(h->frame.stop_sending.app_error_code, 4568)) in check_stream_12() 1072 || !TEST_uint64_t_eq(h->frame.reset_stream.app_error_code, 4568) in check_stream_13()
|
| /src/contrib/unbound/services/ |
| H A D | listen_dnsport.c | 4414 int64_t stream_id, uint64_t app_error_code, void* user_data, in doq_stream_close_cb() argument 4424 (int)app_error_code); in doq_stream_close_cb() 4443 uint64_t final_size, uint64_t app_error_code, void* user_data, in doq_stream_reset_cb() argument 4450 (int)app_error_code); in doq_stream_reset_cb()
|
| /src/contrib/unbound/testcode/ |
| H A D | doqclient.c | 977 uint64_t final_size, uint64_t app_error_code, void* user_data, in stream_reset() argument 984 (int)stream_id, (int)final_size, (int)app_error_code); in stream_reset()
|
| /src/crypto/openssl/ssl/ |
| H A D | ssl_lib.c | 7918 int SSL_get_stream_read_error_code(SSL *s, uint64_t *app_error_code) in SSL_get_stream_read_error_code() argument 7924 return ossl_quic_get_stream_read_error_code(s, app_error_code); in SSL_get_stream_read_error_code() 7930 int SSL_get_stream_write_error_code(SSL *s, uint64_t *app_error_code) in SSL_get_stream_write_error_code() argument 7936 return ossl_quic_get_stream_write_error_code(s, app_error_code); in SSL_get_stream_write_error_code()
|
| /src/crypto/openssl/include/openssl/ |
| H A D | ssl.h | 2459 __owur int SSL_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code); 2460 __owur int SSL_get_stream_write_error_code(SSL *ssl, uint64_t *app_error_code);
|
| H A D | ssl.h.in | 2412 __owur int SSL_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code); 2413 __owur int SSL_get_stream_write_error_code(SSL *ssl, uint64_t *app_error_code);
|
| /src/crypto/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`.
|