|
| size_t | h2_util_hex_dump (char *buffer, size_t maxlen, const char *data, size_t datalen) |
| |
| void | h2_util_camel_case_header (char *s, size_t len) |
| |
| int | h2_util_frame_print (const nghttp2_frame *frame, char *buffer, size_t maxlen) |
| |
| h2_ihash_t * | h2_ihash_create (apr_pool_t *pool, size_t offset_of_int) |
| |
| unsigned int | h2_ihash_count (h2_ihash_t *ih) |
| |
| int | h2_ihash_empty (h2_ihash_t *ih) |
| |
| void * | h2_ihash_get (h2_ihash_t *ih, int id) |
| |
| int | h2_ihash_iter (h2_ihash_t *ih, h2_ihash_iter_t *fn, void *ctx) |
| |
| void | h2_ihash_add (h2_ihash_t *ih, void *val) |
| |
| void | h2_ihash_remove (h2_ihash_t *ih, int id) |
| |
| void | h2_ihash_remove_val (h2_ihash_t *ih, void *val) |
| |
| void | h2_ihash_clear (h2_ihash_t *ih) |
| |
| size_t | h2_ihash_shift (h2_ihash_t *ih, void **buffer, size_t max) |
| |
| h2_iqueue * | h2_iq_create (apr_pool_t *pool, int capacity) |
| |
| int | h2_iq_empty (h2_iqueue *q) |
| |
| int | h2_iq_count (h2_iqueue *q) |
| |
| int | h2_iq_add (h2_iqueue *q, int sid, h2_iq_cmp *cmp, void *ctx) |
| |
| int | h2_iq_append (h2_iqueue *q, int sid) |
| |
| int | h2_iq_remove (h2_iqueue *q, int sid) |
| |
| void | h2_iq_clear (h2_iqueue *q) |
| |
| void | h2_iq_sort (h2_iqueue *q, h2_iq_cmp *cmp, void *ctx) |
| |
| int | h2_iq_shift (h2_iqueue *q) |
| |
| size_t | h2_iq_mshift (h2_iqueue *q, int *pint, size_t max) |
| |
| int | h2_iq_contains (h2_iqueue *q, int sid) |
| |
| apr_status_t | h2_fifo_create (h2_fifo **pfifo, apr_pool_t *pool, int capacity) |
| |
| apr_status_t | h2_fifo_set_create (h2_fifo **pfifo, apr_pool_t *pool, int capacity) |
| |
| apr_status_t | h2_fifo_term (h2_fifo *fifo) |
| |
| int | h2_fifo_count (h2_fifo *fifo) |
| |
| apr_status_t | h2_fifo_push (h2_fifo *fifo, void *elem) |
| |
| apr_status_t | h2_fifo_try_push (h2_fifo *fifo, void *elem) |
| |
| apr_status_t | h2_fifo_pull (h2_fifo *fifo, void **pelem) |
| |
| apr_status_t | h2_fifo_try_pull (h2_fifo *fifo, void **pelem) |
| |
| apr_status_t | h2_fifo_peek (h2_fifo *fifo, h2_fifo_peek_fn *fn, void *ctx) |
| |
| apr_status_t | h2_fifo_try_peek (h2_fifo *fifo, h2_fifo_peek_fn *fn, void *ctx) |
| |
| apr_status_t | h2_fifo_remove (h2_fifo *fifo, void *elem) |
| |
| apr_status_t | h2_ififo_create (h2_ififo **pfifo, apr_pool_t *pool, int capacity) |
| |
| apr_status_t | h2_ififo_set_create (h2_ififo **pfifo, apr_pool_t *pool, int capacity) |
| |
| apr_status_t | h2_ififo_term (h2_ififo *fifo) |
| |
| int | h2_ififo_count (h2_ififo *fifo) |
| |
| apr_status_t | h2_ififo_push (h2_ififo *fifo, int id) |
| |
| apr_status_t | h2_ififo_try_push (h2_ififo *fifo, int id) |
| |
| apr_status_t | h2_ififo_pull (h2_ififo *fifo, int *pi) |
| |
| apr_status_t | h2_ififo_try_pull (h2_ififo *fifo, int *pi) |
| |
| apr_status_t | h2_ififo_peek (h2_ififo *fifo, h2_ififo_peek_fn *fn, void *ctx) |
| |
| apr_status_t | h2_ififo_try_peek (h2_ififo *fifo, h2_ififo_peek_fn *fn, void *ctx) |
| |
| apr_status_t | h2_ififo_remove (h2_ififo *fifo, int id) |
| |
| unsigned char | h2_log2 (int n) |
| |
| apr_size_t | h2_util_table_bytes (apr_table_t *t, apr_size_t pair_extra) |
| |
| int | h2_ignore_req_trailer (const char *name, size_t len) |
| |
| int | h2_ignore_resp_trailer (const char *name, size_t len) |
| |
| int | h2_push_policy_determine (apr_table_t *headers, apr_pool_t *p, int push_enabled) |
| |
| apr_size_t | h2_util_base64url_decode (const char **decoded, const char *encoded, apr_pool_t *pool) |
| |
| const char * | h2_util_base64url_encode (const char *data, apr_size_t len, apr_pool_t *pool) |
| |
| int | h2_util_ignore_resp_header (const char *name) |
| |
| apr_status_t | h2_res_create_ngtrailer (h2_ngheader **ph, apr_pool_t *p, struct h2_headers *headers) |
| |
| apr_status_t | h2_res_create_ngheader (h2_ngheader **ph, apr_pool_t *p, struct h2_headers *headers) |
| |
| apr_status_t | h2_req_create_ngheader (h2_ngheader **ph, apr_pool_t *p, const struct h2_request *req) |
| |
| apr_status_t | h2_req_add_header (apr_table_t *headers, apr_pool_t *pool, const char *name, size_t nlen, const char *value, size_t vlen, size_t max_field_len, int *pwas_added) |
| |
| apr_status_t | h2_brigade_concat_length (apr_bucket_brigade *dest, apr_bucket_brigade *src, apr_off_t length) |
| |
| apr_status_t | h2_brigade_copy_length (apr_bucket_brigade *dest, apr_bucket_brigade *src, apr_off_t length) |
| |
| apr_size_t | h2_util_bucket_print (char *buffer, apr_size_t bmax, apr_bucket *b, const char *sep) |
| |
| apr_size_t | h2_util_bb_print (char *buffer, apr_size_t bmax, const char *tag, const char *sep, apr_bucket_brigade *bb) |
| |
| apr_status_t | h2_append_brigade (apr_bucket_brigade *to, apr_bucket_brigade *from, apr_off_t *plen, int *peos, h2_bucket_gate *should_append) |
| |
| apr_off_t | h2_brigade_mem_size (apr_bucket_brigade *bb) |
| |
| void | h2_util_drain_pipe (apr_file_t *pipe) |
| |
| apr_status_t | h2_util_wait_on_pipe (apr_file_t *pipe) |
| |