| 112 | } |
| 113 | |
| 114 | int h2_proxy_ihash_iter(h2_proxy_ihash_t *ih, h2_proxy_ihash_iter_t *fn, void *ctx) |
| 115 | { |
| 116 | iter_ctx ictx; |
| 117 | ictx.iter = fn; |
| 118 | ictx.ctx = ctx; |
| 119 | return apr_hash_do(ihash_iter, &ictx, ih->hash); |
| 120 | } |
| 121 | |
| 122 | void h2_proxy_ihash_add(h2_proxy_ihash_t *ih, void *val) |
| 123 | { |
no outgoing calls
no test coverage detected