/*
** Licensed to the Apache Software Foundation (ASF) under one or more
** contributor license agreements. See the NOTICE file distributed with
** this work for additional information regarding copyright ownership.
** The ASF licenses this file to You under the Apache License, Version 2.0
** (the "License"); you may not use this file except in compliance with
** the License. You may obtain a copy of the License at
**
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
*/
#include "apr_strings.h"
#include "apreq_module.h"
#include "apreq_error.h"
#include "apreq_util.h"
struct custom_handle {
};
{
apr_status_t s;
apr_bucket *e;
return req->body_status;
case APR_SUCCESS:
break;
}
req->body_status =
break;
case APR_INCOMPLETE:
if (s != APR_SUCCESS) {
req->body_status = s;
break;
}
break;
}
req->body_status =
break;
default:
req->body_status = s;
}
return req->body_status;
}
{
return req->jar_status;
}
{
return req->args_status;
}
{
return req->body_status;
}
{
const char *val;
return NULL;
return NULL;
return apreq_value_to_cookie(val);
}
{
const char *val;
return NULL;
return NULL;
return apreq_value_to_param(val);
}
{
const char *val;
return NULL;
while (1) {
break;
else
return NULL;
}
return apreq_value_to_param(val);
}
const apreq_parser_t **parser)
{
return APR_SUCCESS;
}
{
(void)handle;
(void)parser;
return APR_ENOTIMPL;
}
{
return APR_SUCCESS;
}
{
return APR_SUCCESS;
}
{
(void)handle;
(void)bytes;
return APR_ENOTIMPL;
}
{
return APR_SUCCESS;
}
{
(void)handle;
(void)bytes;
return APR_ENOTIMPL;
}
const char **path)
{
return APR_SUCCESS;
}
const char *path)
{
(void)handle;
(void)path;
return APR_ENOTIMPL;
}
const char *query_string,
const char *cookie,
{
req->bytes_read = 0;
req->jar_status =
}
else {
}
if (query_string != NULL) {
req->args_status =
}
else {
}
}
}