NULL, /* map of content-type to priorities */
256, /* push diary size */
0, /* copy files across threads */
+ NULL /* push list */
};
void h2_config_init(apr_pool_t *pool)
}
task->input.chunked_total += chunk_len;
ap_log_cerror(APLOG_MARK, APLOG_TRACE2, 0, task->c,
- "h2_task(%s): added chunk %"APR_OFF_T_FMT", total %"
- APR_OFF_T_FMT, task->id, chunk_len, task->input.chunked_total);
+ "h2_task(%s): added chunk %ld, total %ld",
+ task->id, (long)chunk_len, (long)task->input.chunked_total);
}
static int ser_header(void *ctx, const char *name, const char *value)
status = ap_pass_brigade(stream->r->output_filters, stream->output);
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, status, stream->r, APLOGNO(03359)
- "h2_proxy_session(%s): stream=%d, response DATA %ld, %"
- APR_OFF_T_FMT " total", session->id, stream_id, (long)len,
- stream->data_received);
+ "h2_proxy_session(%s): stream=%d, response DATA %ld, %ld"
+ " total", session->id, stream_id, (long)len,
+ (long)stream->data_received);
if (status != APR_SUCCESS) {
ap_log_cerror(APLOG_MARK, APLOG_DEBUG, status, session->c, APLOGNO(03344)
"h2_proxy_session(%s): passing output on stream %d",
stream->data_sent += readlen;
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, status, stream->r, APLOGNO(03468)
- "h2_proxy_stream(%d): request DATA %ld, %"
- APR_OFF_T_FMT" total, flags=%d",
- stream->id, (long)readlen, stream->data_sent,
+ "h2_proxy_stream(%d): request DATA %ld, %ld"
+ " total, flags=%d",
+ stream->id, (long)readlen, (long)stream->data_sent,
(int)*data_flags);
return readlen;
}
return (ctx->i < ctx->slen);
}
-static int find_chr(link_ctx *ctx, char c, size_t *pidx)
+static int find_chr(link_ctx *ctx, char c, int *pidx)
{
- size_t j;
+ int j;
for (j = ctx->i; j < ctx->slen; ++j) {
if (ctx->s[j] == c) {
*pidx = j;
static int skip_qstring(link_ctx *ctx)
{
if (skip_ws(ctx) && read_chr(ctx, '\"')) {
- size_t end;
+ int end;
if (find_chr(ctx, '\"', &end)) {
ctx->i = end + 1;
return 1;
static int skip_ptoken(link_ctx *ctx)
{
if (skip_ws(ctx)) {
- size_t i;
+ int i;
for (i = ctx->i; i < ctx->slen && ptoken_char(ctx->s[i]); ++i) {
/* nop */
}
{
ctx->link_start = ctx->link_end = 0;
if (skip_ws(ctx) && read_chr(ctx, '<')) {
- size_t end;
+ int end;
if (find_chr(ctx, '>', &end)) {
ctx->link_start = ctx->i;
ctx->link_end = end;
char *p;
olen = end - start;
- nlen = strlen(ns);
+ nlen = (int)strlen(ns);
delta = nlen - olen;
plen = ctx->slen + delta + 1;
p = apr_pcalloc(ctx->pool, plen);
strncpy(p + start, ns, nlen);
strcpy(p + start + nlen, ctx->s + end);
ctx->s = p;
- ctx->slen = strlen(p);
+ ctx->slen = (int)strlen(p);
if (ctx->i >= end) {
ctx->i += delta;
}
if (prepend_p_server) {
if (ctx->server_uri == NULL) {
ctx->server_uri = ap_construct_url(ctx->pool, "", ctx->r);
- ctx->su_len = strlen(ctx->server_uri);
+ ctx->su_len = (int)strlen(ctx->server_uri);
}
if (!strncmp(mapped, ctx->server_uri, ctx->su_len)) {
mapped += ctx->su_len;
ctx.pool = r->pool;
ctx.conf = conf;
ctx.real_backend_uri = real_backend_uri;
- ctx.rbu_len = strlen(ctx.real_backend_uri);
+ ctx.rbu_len = (int)strlen(ctx.real_backend_uri);
ctx.p_server_uri = proxy_server_uri;
- ctx.psu_len = strlen(ctx.p_server_uri);
+ ctx.psu_len = (int)strlen(ctx.p_server_uri);
ctx.s = s;
- ctx.slen = strlen(s);
+ ctx.slen = (int)strlen(s);
while (read_link(&ctx)) {
while (skip_param(&ctx)) {
/* nop */