| 237 | } |
| 238 | |
| 239 | static int read_param(link_ctx *ctx) |
| 240 | { |
| 241 | if (skip_ws(ctx) && read_chr(ctx, ';')) { |
| 242 | const char *name, *value = ""; |
| 243 | if (read_pname(ctx, &name)) { |
| 244 | read_pvalue(ctx, &value); /* value is optional */ |
| 245 | apr_table_setn(ctx->params, name, value); |
| 246 | return 1; |
| 247 | } |
| 248 | } |
| 249 | return 0; |
| 250 | } |
| 251 | |
| 252 | static int read_sep(link_ctx *ctx) |
| 253 | { |
no test coverage detected