/httpd/server/ |
H A D | apreq_module.c | 24 APREQ_DECLARE(apreq_param_t *)apreq_param(apreq_handle_t *req, const char *key) argument 26 apreq_param_t *param = apreq_args_get(req, key); 28 return apreq_body_get(req, key); 33 APREQ_DECLARE(apr_table_t *)apreq_params(apreq_handle_t *req, apr_pool_t *p) argument 36 apreq_args(req, &args); 37 apreq_body(req, &body); 52 APREQ_DECLARE(apr_table_t *)apreq_cookies(apreq_handle_t *req, apr_pool_t *p) argument 55 apreq_jar(req, &jar);
|
H A D | apreq_module_custom.c | 44 struct custom_handle *req = (struct custom_handle *)handle; local 48 if (req->body_status != APR_INCOMPLETE) 49 return req->body_status; 51 switch (s = apr_brigade_partition(req->in, bytes, &e)) { 55 apreq_brigade_move(req->tmpbb, req->in, e); 56 req->bytes_read += bytes; 58 if (req->bytes_read > req->read_limit) { 59 req 99 struct custom_handle *req = (struct custom_handle *)handle; local 106 struct custom_handle *req = (struct custom_handle*)handle; local 113 struct custom_handle *req = (struct custom_handle*)handle; local 124 struct custom_handle *req = (struct custom_handle*)handle; local 140 struct custom_handle *req = (struct custom_handle*)handle; local 156 struct custom_handle *req = (struct custom_handle*)handle; local 181 struct custom_handle *req = (struct custom_handle*)handle; local 198 struct custom_handle *req = (struct custom_handle*)handle; local 206 struct custom_handle *req = (struct custom_handle*)handle; local 222 struct custom_handle *req = (struct custom_handle*)handle; local 238 struct custom_handle *req = (struct custom_handle*)handle; local 262 struct custom_handle *req; local [all...] |
H A D | apreq_module_cgi.c | 145 struct cgi_handle *req = (struct cgi_handle *)handle; local 155 cprompt = req->promptstr - 1; 243 apr_file_printf(req->sout, "%s", buf[0]); 244 apr_file_gets(buf[0], MAX_BUFFER_SIZE, req->sin); 347 struct cgi_handle *req = (struct cgi_handle *)handle; local 359 req->body_status = APREQ_ERROR_BADHEADER; 360 cgi_log_error(CGILOG_MARK, CGILOG_ERR, req->body_status, handle, 364 else if ((apr_uint64_t)content_length > req->read_limit) { 365 req->body_status = APREQ_ERROR_OVERLIMIT; 366 cgi_log_error(CGILOG_MARK, CGILOG_ERR, req 426 struct cgi_handle *req = (struct cgi_handle *)handle; local 498 struct cgi_handle *req = (struct cgi_handle *)handle; local 542 struct cgi_handle *req = (struct cgi_handle *)handle; local 590 struct cgi_handle *req = (struct cgi_handle *)handle; local 622 struct cgi_handle *req = (struct cgi_handle *)handle; local 656 struct cgi_handle *req = (struct cgi_handle *)handle; local 704 struct cgi_handle *req = (struct cgi_handle *)handle; local 796 struct cgi_handle *req = (struct cgi_handle *)handle; local 805 struct cgi_handle *req = (struct cgi_handle *)handle; local 833 struct cgi_handle *req = (struct cgi_handle *)handle; local 854 struct cgi_handle *req = (struct cgi_handle *)handle; local 870 struct cgi_handle *req = (struct cgi_handle *)handle; local 881 struct cgi_handle *req = (struct cgi_handle *)handle; local 895 struct cgi_handle *req = (struct cgi_handle *)handle; local 904 struct cgi_handle *req = (struct cgi_handle *)handle; local 923 struct cgi_handle *req = (struct cgi_handle *)handle; local 972 struct cgi_handle *req; local [all...] |
/httpd/modules/apreq/ |
H A D | handle.c | 35 struct apache2_handle *req = (struct apache2_handle *)handle; local 37 if (req->f == NULL) { 38 req->f = ap_add_input_filter(APREQ_FILTER_NAME, NULL, 39 req->r, 40 req->r->connection); 44 apreq_filter_relocate(req->f); 47 return req->f; 53 struct apache2_handle *req = (struct apache2_handle*)handle; local 54 request_rec *r = req->r; 56 if (req 73 struct apache2_handle *req = (struct apache2_handle*)handle; local 95 struct apache2_handle *req = (struct apache2_handle *)handle; local 116 struct apache2_handle *req = (struct apache2_handle *)handle; local 416 struct apache2_handle *req = local [all...] |
/httpd/modules/ssl/ |
H A D | ssl_engine_ocsp.c | 110 OCSP_REQUEST *req = OCSP_REQUEST_new(); local 113 if (!*certid || !OCSP_request_add0_id(req, *certid)) { 121 OCSP_request_add1_nonce(req, 0, -1); 124 return req;
|
H A D | ssl_util_ocsp.c | 30 static BIO *serialize_request(OCSP_REQUEST *req, const apr_uri_t *uri) argument 35 len = i2d_OCSP_REQUEST(req, NULL); 48 if (i2d_OCSP_REQUEST_bio(bio, req) != 1) {
|
H A D | ssl_util_stapling.c | 394 OCSP_REQUEST *req = NULL; local 408 req = OCSP_REQUEST_new(); 409 if (!req) 414 if (!OCSP_request_add0_id(req, id)) 421 if (!OCSP_REQUEST_add_ext(req, ext, -1)) 460 req, conn, vpool); 500 if (req) 501 OCSP_REQUEST_free(req);
|
H A D | ssl_engine_kernel.c | 931 ssl_require_t *req = &ssl_requires[i]; local 933 ok = ap_expr_exec(r, req->mpExpr, &errstring); 954 "Failed expression: %s", req->cpExpr);
|
/httpd/include/ |
H A D | apreq_module.h | 128 * @param req The request handle 135 apr_status_t apreq_jar(apreq_handle_t *req, const apr_table_t **t) argument 137 return req->module->jar(req,t); 143 * @param req The request handle 150 apr_status_t apreq_args(apreq_handle_t *req, const apr_table_t **t) argument 152 return req->module->args(req,t); 158 * @param req The request handle 165 apr_status_t apreq_body(apreq_handle_t *req, cons argument 180 apreq_jar_get(apreq_handle_t *req, const char *name) argument 194 apreq_args_get(apreq_handle_t *req, const char *name) argument 208 apreq_body_get(apreq_handle_t *req, const char *name) argument 223 apreq_parser_get(apreq_handle_t *req, const apreq_parser_t **parser) argument 239 apreq_parser_set(apreq_handle_t *req, apreq_parser_t *parser) argument 254 apreq_hook_add(apreq_handle_t *req, apreq_hook_t *hook) argument 270 apreq_brigade_limit_set(apreq_handle_t *req, apr_size_t bytes) argument 286 apreq_brigade_limit_get(apreq_handle_t *req, apr_size_t *bytes) argument 302 apreq_read_limit_set(apreq_handle_t *req, apr_uint64_t bytes) argument 318 apreq_read_limit_get(apreq_handle_t *req, apr_uint64_t *bytes) argument 333 apreq_temp_dir_set(apreq_handle_t *req, const char *path) argument 349 apreq_temp_dir_get(apreq_handle_t *req, const char **path) argument [all...] |
/httpd/modules/metadata/ |
H A D | mod_remoteip.c | 223 remoteip_req_t *req = NULL; local 372 if (!req) { 373 req = (remoteip_req_t *) apr_palloc(r->pool, sizeof(remoteip_req_t)); 374 req->useragent_ip = r->useragent_ip; 381 req->useragent_ip, NULL); 384 proxy_ips = req->useragent_ip; 388 req->useragent_addr = temp_sa; 389 apr_sockaddr_ip_get(&req->useragent_ip, req->useragent_addr); 393 if (!req) { [all...] |
/httpd/modules/aaa/ |
H A D | mod_authnz_ldap.c | 434 authn_ldap_request_t *req = local 443 if (!req) { 452 if (req->password && 456 binddn = req->dn; 457 bindpw = req->password; 465 apr_pool_cleanup_register(req->ldc_pool, ldc, 473 authn_ldap_request_t *req = local 475 ap_set_module_config(r->request_config, &authnz_ldap_module, req); 476 apr_pool_create(&(req->ldc_pool), r->pool); 478 "ldap authorize: Creating LDAP req structur 484 authn_ldap_request_t *req = local 511 authn_ldap_request_t *req = NULL; local 667 authn_ldap_request_t *req = local 702 authn_ldap_request_t *req = local 829 authn_ldap_request_t *req = local 1033 authn_ldap_request_t *req = local 1132 authn_ldap_request_t *req = local 1239 authn_ldap_request_t *req = local 1968 authn_ldap_request_t *req = local [all...] |
/httpd/modules/generators/ |
H A D | mod_cgid.c | 413 cgid_req_t *req) 424 stat = sock_read(fd, req, sizeof(*req)); 428 r->server->log.level = req->loglevel; 429 if (req->req_type == GETPID_REQ) { 440 ap_set_module_config(r->request_config, &cgid_module, (void *)&req->ugid); 443 r->filename = apr_pcalloc(r->pool, req->filename_len + 1); 444 *argv0 = apr_pcalloc(r->pool, req->argv0_len + 1); 445 r->uri = apr_pcalloc(r->pool, req->uri_len + 1); 446 if ((stat = sock_read(fd, r->filename, req 412 get_req(int fd, request_rec *r, char **argv0, char ***env, cgid_req_t *req) argument 486 cgid_req_t req = {0}; local 1357 cgid_req_t req = {0}; local [all...] |
/httpd/modules/proxy/ |
H A D | mod_proxy.h | 143 int req; /* true if proxy requests are enabled */ member in struct:__anon275
|
/httpd/modules/mappers/ |
H A D | mod_rewrite.c | 448 request_rec *req; local 458 for (redir=0, req=r; req->prev; req = req->prev) {
|