| 258 | } |
| 259 | |
| 260 | static void init_params(link_ctx *ctx) |
| 261 | { |
| 262 | if (!ctx->params) { |
| 263 | ctx->params = apr_table_make(ctx->pool, 5); |
| 264 | } |
| 265 | else { |
| 266 | apr_table_clear(ctx->params); |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | static int same_authority(const h2_request *req, const apr_uri_t *uri) |
| 271 | { |