Searched refs:ap_method_list_t (Results 1 - 4 of 4) sorted by relevance
/httpd/include/ |
H A D | http_protocol.h | 318 AP_DECLARE(ap_method_list_t *) ap_make_method_list(apr_pool_t *p, int nelts); 327 AP_DECLARE(void) ap_copy_method_list(ap_method_list_t *dest, 328 ap_method_list_t *src); 331 * Search for an HTTP method name in an ap_method_list_t structure, and 338 AP_DECLARE(int) ap_method_in_list(ap_method_list_t *l, const char *method); 341 * Add an HTTP method name to an ap_method_list_t structure if it isn't 348 AP_DECLARE(void) ap_method_list_add(ap_method_list_t *l, const char *method); 351 * Remove an HTTP method name from an ap_method_list_t structure. 357 AP_DECLARE(void) ap_method_list_remove(ap_method_list_t *l, 366 AP_DECLARE(void) ap_clear_method_list(ap_method_list_t * [all...] |
H A D | httpd.h | 625 /** @see ap_method_list_t */ 626 typedef struct ap_method_list_t ap_method_list_t; typedef in typeref:struct:ap_method_list_t 629 * @struct ap_method_list_t 635 struct ap_method_list_t { struct 870 ap_method_list_t *allowed_methods;
|
H A D | http_config.h | 300 ap_method_list_t *xlimited;
|
/httpd/modules/http/ |
H A D | http_protocol.c | 1546 AP_DECLARE(ap_method_list_t *) ap_make_method_list(apr_pool_t *p, int nelts) 1548 ap_method_list_t *ml; 1550 ml = (ap_method_list_t *) apr_palloc(p, sizeof(ap_method_list_t)); 1560 AP_DECLARE(void) ap_copy_method_list(ap_method_list_t *dest, 1561 ap_method_list_t *src) 1579 AP_DECLARE(int) ap_method_in_list(ap_method_list_t *l, const char *method) 1611 AP_DECLARE(void) ap_method_list_add(ap_method_list_t *l, const char *method) 1645 AP_DECLARE(void) ap_method_list_remove(ap_method_list_t *l, 1683 AP_DECLARE(void) ap_clear_method_list(ap_method_list_t * [all...] |
Completed in 546 milliseconds