diff options
author | Paul Querna <pquerna@apache.org> | 2005-04-25 05:19:18 +0000 |
---|---|---|
committer | Paul Querna <pquerna@apache.org> | 2005-04-25 05:19:18 +0000 |
commit | af9ae7c2d73c82e6432bb0ab376d57fd61db28bf (patch) | |
tree | 2357ef3c1cac6dad5cbc6344847468a369e10e4b /include/http_protocol.h | |
parent | 97817b592a807621b40a02ec9c632e2858523a10 (diff) | |
download | httpd-af9ae7c2d73c82e6432bb0ab376d57fd61db28bf.tar.gz |
Remove ap_method_list_do and ap_method_list_vdo as previously mentioned dev@httpd.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@164536 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/http_protocol.h')
-rw-r--r-- | include/http_protocol.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/include/http_protocol.h b/include/http_protocol.h index 45e3d66c05..405ff2415a 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -261,14 +261,7 @@ AP_DECLARE(void) ap_method_registry_init(apr_pool_t *p); AP_DECLARE(ap_method_list_t *) ap_make_method_list(apr_pool_t *p, int nelts); AP_DECLARE(void) ap_copy_method_list(ap_method_list_t *dest, ap_method_list_t *src); -AP_DECLARE_NONSTD(void) ap_method_list_do(int (*comp) (void *urec, const char *mname, - int mnum), - void *rec, - const ap_method_list_t *ml, ...); -AP_DECLARE(void) ap_method_list_vdo(int (*comp) (void *urec, const char *mname, - int mnum), - void *rec, const ap_method_list_t *ml, - va_list vp); + /** * Search for an HTTP method name in an ap_method_list_t structure, and * return true if found. |