Symbol: OSSL_DEMO_H3_STREAM
crypto/openssl/demos/http3/ossl-nghttp3.c
100
static OSSL_DEMO_H3_STREAM *h3_conn_create_stream(OSSL_DEMO_H3_CONN *conn, int type)
crypto/openssl/demos/http3/ossl-nghttp3.c
102
OSSL_DEMO_H3_STREAM *s;
crypto/openssl/demos/http3/ossl-nghttp3.c
105
if ((s = OPENSSL_zalloc(sizeof(OSSL_DEMO_H3_STREAM))) == NULL)
crypto/openssl/demos/http3/ossl-nghttp3.c
126
static OSSL_DEMO_H3_STREAM *h3_conn_accept_stream(OSSL_DEMO_H3_CONN *conn, SSL *qstream)
crypto/openssl/demos/http3/ossl-nghttp3.c
128
OSSL_DEMO_H3_STREAM *s;
crypto/openssl/demos/http3/ossl-nghttp3.c
130
if ((s = OPENSSL_zalloc(sizeof(OSSL_DEMO_H3_STREAM))) == NULL)
crypto/openssl/demos/http3/ossl-nghttp3.c
139
static void h3_conn_remove_stream(OSSL_DEMO_H3_CONN *conn, OSSL_DEMO_H3_STREAM *s)
crypto/openssl/demos/http3/ossl-nghttp3.c
168
OSSL_DEMO_H3_STREAM *stream = stream_user_data;
crypto/openssl/demos/http3/ossl-nghttp3.c
184
OSSL_DEMO_H3_STREAM *stream = stream_user_data;
crypto/openssl/demos/http3/ossl-nghttp3.c
201
OSSL_DEMO_H3_STREAM *stream = stream_user_data;
crypto/openssl/demos/http3/ossl-nghttp3.c
240
OSSL_DEMO_H3_STREAM *s_ctl_send = NULL;
crypto/openssl/demos/http3/ossl-nghttp3.c
241
OSSL_DEMO_H3_STREAM *s_qpenc_send = NULL;
crypto/openssl/demos/http3/ossl-nghttp3.c
242
OSSL_DEMO_H3_STREAM *s_qpdec_send = NULL;
crypto/openssl/demos/http3/ossl-nghttp3.c
34
DEFINE_LHASH_OF_EX(OSSL_DEMO_H3_STREAM);
crypto/openssl/demos/http3/ossl-nghttp3.c
36
static void h3_stream_free(OSSL_DEMO_H3_STREAM *s)
crypto/openssl/demos/http3/ossl-nghttp3.c
45
static unsigned long h3_stream_hash(const OSSL_DEMO_H3_STREAM *s)
crypto/openssl/demos/http3/ossl-nghttp3.c
461
static void h3_conn_pump_stream(OSSL_DEMO_H3_STREAM *s, void *conn_)
crypto/openssl/demos/http3/ossl-nghttp3.c
50
static int h3_stream_eq(const OSSL_DEMO_H3_STREAM *a, const OSSL_DEMO_H3_STREAM *b)
crypto/openssl/demos/http3/ossl-nghttp3.c
577
OSSL_DEMO_H3_STREAM key, *s;
crypto/openssl/demos/http3/ossl-nghttp3.c
59
void *OSSL_DEMO_H3_STREAM_get_user_data(const OSSL_DEMO_H3_STREAM *s)
crypto/openssl/demos/http3/ossl-nghttp3.c
72
LHASH_OF(OSSL_DEMO_H3_STREAM) *streams;
crypto/openssl/demos/http3/ossl-nghttp3.c
720
OSSL_DEMO_H3_STREAM *s_req = NULL;
crypto/openssl/demos/http3/ossl-nghttp3.h
109
void *OSSL_DEMO_H3_STREAM_get_user_data(const OSSL_DEMO_H3_STREAM *stream);