HomeSort by: relevance | last modified time | path
    Searched defs:OSSL_DEMO_H3_STREAM (Results 1 - 2 of 2) sorted by relevancy

  /src/crypto/external/apache2/openssl/dist/demos/http3/
ossl-nghttp3.h 28 typedef struct ossl_demo_h3_stream_st OSSL_DEMO_H3_STREAM;
96 * pointer passed to the callbacks is a OSSL_DEMO_H3_STREAM object pointer; to
109 void *OSSL_DEMO_H3_STREAM_get_user_data(const OSSL_DEMO_H3_STREAM *stream);
ossl-nghttp3.c 34 DEFINE_LHASH_OF_EX(OSSL_DEMO_H3_STREAM);
36 static void h3_stream_free(OSSL_DEMO_H3_STREAM *s)
45 static unsigned long h3_stream_hash(const OSSL_DEMO_H3_STREAM *s)
50 static int h3_stream_eq(const OSSL_DEMO_H3_STREAM *a, const OSSL_DEMO_H3_STREAM *b)
59 void *OSSL_DEMO_H3_STREAM_get_user_data(const OSSL_DEMO_H3_STREAM *s)
72 LHASH_OF(OSSL_DEMO_H3_STREAM) *streams;
100 static OSSL_DEMO_H3_STREAM *h3_conn_create_stream(OSSL_DEMO_H3_CONN *conn, int type)
102 OSSL_DEMO_H3_STREAM *s;
105 if ((s = OPENSSL_zalloc(sizeof(OSSL_DEMO_H3_STREAM))) == NULL
    [all...]

Completed in 64 milliseconds