Home
last modified time | relevance | path

Searched refs:app_error_code (Results 1 – 23 of 23) sorted by relevance

/freebsd/crypto/openssl/ssl/quic/
H A Dquic_tserver.c444 uint64_t *app_error_code) in ossl_quic_tserver_stream_has_peer_stop_sending() argument
453 if (qs->peer_stop_sending && app_error_code != NULL) in ossl_quic_tserver_stream_has_peer_stop_sending()
454 *app_error_code = qs->peer_stop_sending_aec; in ossl_quic_tserver_stream_has_peer_stop_sending()
461 uint64_t *app_error_code) in ossl_quic_tserver_stream_has_peer_reset_stream() argument
470 if (ossl_quic_stream_recv_is_reset(qs) && app_error_code != NULL) in ossl_quic_tserver_stream_has_peer_reset_stream()
471 *app_error_code = qs->peer_reset_stream_aec; in ossl_quic_tserver_stream_has_peer_reset_stream()
527 int ossl_quic_tserver_shutdown(QUIC_TSERVER *srv, uint64_t app_error_code) in ossl_quic_tserver_shutdown() argument
529 ossl_quic_channel_local_close(srv->ch, app_error_code, NULL); in ossl_quic_tserver_shutdown()
H A Dquic_wire.c108 || !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 Dqlog_event_helpers.c274 QLOG_U64("error_code", f.app_error_code); in log_frame_actual()
287 QLOG_U64("error_code", f.app_error_code); in log_frame_actual()
H A Dquic_trace.c137 (unsigned long long)frame_data.app_error_code); in frame_reset_stream()
154 (unsigned long long)frame_data.app_error_code); in frame_stop_sending()
H A Dquic_rx_depack.c210 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 Dquic_impl.c4003 uint64_t *app_error_code) in quic_classify_stream() argument
4010 if (app_error_code != NULL) in quic_classify_stream()
4011 *app_error_code = UINT64_MAX; in quic_classify_stream()
4013 app_error_code = &final_size; /* throw away value */ in quic_classify_stream()
4035 *app_error_code = !is_write in quic_classify_stream()
4043 *app_error_code = !is_write in quic_classify_stream()
4091 uint64_t *app_error_code) in quic_get_stream_error_code() argument
4100 &state, app_error_code); in quic_get_stream_error_code()
4114 int ossl_quic_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code) in ossl_quic_get_stream_read_error_code() argument
4116 return quic_get_stream_error_code(ssl, /*is_write=*/0, app_error_code); in ossl_quic_get_stream_read_error_code()
[all …]
H A Dquic_stream_map.c593 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 Dquic_txp.c2534 f.app_error_code = stream->stop_sending_aec; in txp_generate_stream_related()
2560 f.app_error_code = stream->reset_stream_aec; in txp_generate_stream_related()
H A Dquic_channel.c2918 void ossl_quic_channel_local_close(QUIC_CHANNEL *ch, uint64_t app_error_code, in ossl_quic_channel_local_close() argument
2927 tcause.error_code = app_error_code; in ossl_quic_channel_local_close()
/freebsd/crypto/openssl/include/internal/
H A Dquic_tserver.h147 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 Dquic_wire.h199 uint64_t app_error_code; member
206 uint64_t app_error_code; member
H A Dquic_ssl.h131 uint64_t *app_error_code);
133 uint64_t *app_error_code);
H A Dquic_channel.h214 void ossl_quic_channel_local_close(QUIC_CHANNEL *ch, uint64_t app_error_code,
H A Dquic_stream_map.h787 uint64_t app_error_code,
/freebsd/crypto/openssl/demos/http3/
H A Dossl-nghttp3.c161 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()
/freebsd/crypto/openssl/doc/man3/
H A DSSL_set_incoming_stream_policy.pod19 uint64_t app_error_code);
30 I<app_error_code> is an application error code which will be used in any QUIC
H A DSSL_get_stream_read_state.pod27 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>.
/freebsd/crypto/openssl/test/
H A Dquic_txp_test.c1025 || !TEST_uint64_t_eq(h->frame.stop_sending.app_error_code, 4568)) in check_stream_12()
1057 || !TEST_uint64_t_eq(h->frame.reset_stream.app_error_code, 4568) in check_stream_13()
/freebsd/contrib/unbound/services/
H A Dlisten_dnsport.c3912 verbose(VERB_ALGO, "doq: shutdown stream_id %d with app_error_code %d", in doq_stream_close()
4372 int64_t stream_id, uint64_t app_error_code, void* user_data, in doq_recv_stream_data_cb()
4382 (int)app_error_code); in doq_stream_close_cb()
4401 uint64_t final_size, uint64_t app_error_code, void* user_data, in doq_stream_close_cb()
4407 "app_error_code %d", (int)stream_id, (int)final_size, in doq_stream_reset_cb() argument
4408 (int)app_error_code); in doq_stream_reset_cb()
4378 doq_stream_close_cb(ngtcp2_conn * ATTR_UNUSED (conn),uint32_t flags,int64_t stream_id,uint64_t app_error_code,void * user_data,void * ATTR_UNUSED (stream_user_data)) doq_stream_close_cb() argument
/freebsd/crypto/openssl/ssl/
H A Dssl_lib.c7965 int SSL_get_stream_read_error_code(SSL *s, uint64_t *app_error_code) in SSL_get_stream_read_error_code() argument
7971 return ossl_quic_get_stream_read_error_code(s, app_error_code); in SSL_get_stream_read_error_code()
7977 int SSL_get_stream_write_error_code(SSL *s, uint64_t *app_error_code) in SSL_get_stream_write_error_code() argument
7983 return ossl_quic_get_stream_write_error_code(s, app_error_code); in SSL_get_stream_write_error_code()
/freebsd/crypto/openssl/include/openssl/
H A Dssl.h2451 __owur int SSL_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code);
2452 __owur int SSL_get_stream_write_error_code(SSL *ssl, uint64_t *app_error_code);
H A Dssl.h.in2404 __owur int SSL_get_stream_read_error_code(SSL *ssl, uint64_t *app_error_code);
2405 __owur int SSL_get_stream_write_error_code(SSL *ssl, uint64_t *app_error_code);
/freebsd/crypto/openssl/doc/designs/quic-design/
H A Dquic-api.md808 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`.