Searched refs:h3conn (Results 1 – 3 of 3) sorted by relevance
| /freebsd/crypto/openssl/demos/http3/ |
| H A D | ossl-nghttp3.c | 70 nghttp3_conn *h3conn; member 94 nghttp3_conn_del(conn->h3conn); in OSSL_DEMO_H3_CONN_free() 148 static int h3_conn_recv_data(nghttp3_conn *h3conn, int64_t stream_id, in h3_conn_recv_data() argument 158 return conn->recv_data_cb(h3conn, stream_id, data, datalen, in h3_conn_recv_data() 162 static int h3_conn_stream_close(nghttp3_conn *h3conn, int64_t stream_id, in h3_conn_stream_close() argument 171 ret = conn->stream_close_cb(h3conn, stream_id, app_error_code, in h3_conn_stream_close() 178 static int h3_conn_stop_sending(nghttp3_conn *h3conn, int64_t stream_id, in h3_conn_stop_sending() argument 187 ret = conn->stop_sending_cb(h3conn, stream_id, app_error_code, in h3_conn_stop_sending() 195 static int h3_conn_reset_stream(nghttp3_conn *h3conn, int64_t stream_id, in h3_conn_reset_stream() argument 205 ret = conn->reset_stream_cb(h3conn, stream_id, app_error_code, in h3_conn_reset_stream() [all …]
|
| H A D | ossl-nghttp3-demo.c | 23 static int on_recv_header(nghttp3_conn *h3conn, int64_t stream_id, in on_recv_header() argument 44 static int on_end_headers(nghttp3_conn *h3conn, int64_t stream_id, in on_end_headers() argument 52 static int on_recv_data(nghttp3_conn *h3conn, int64_t stream_id, in on_recv_data() argument 71 static int on_end_stream(nghttp3_conn *h3conn, int64_t stream_id, in on_end_stream() argument
|
| H A D | ossl-nghttp3-demo-server.c | 331 static int on_end_stream(nghttp3_conn *h3conn, int64_t stream_id, in on_end_stream() argument 342 static int quic_server_read(nghttp3_conn *h3conn, SSL *stream, uint64_t id, struct h3ssl *h3ssl) in quic_server_read() argument 370 r = nghttp3_conn_read_stream(h3conn, id, msg2, ret, 0); in quic_server_read() 395 static int quic_server_h3streams(nghttp3_conn *h3conn, struct h3ssl *h3ssl) in quic_server_h3streams() argument 437 if (nghttp3_conn_bind_qpack_streams(h3conn, p_streamid, r_streamid)) { in quic_server_h3streams() 441 if (nghttp3_conn_bind_control_stream(h3conn, c_streamid)) { in quic_server_h3streams() 473 nghttp3_conn *h3conn = *curh3conn; in read_from_ssl_ids() local 562 h3conn = *curh3conn; in read_from_ssl_ids() 607 r = quic_server_read(h3conn, stream, new_id, h3ssl); in read_from_ssl_ids() 634 ret = quic_server_h3streams(h3conn, h3ssl); in read_from_ssl_ids() [all …]
|