Loading CHANGES +3 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,9 @@ Changes with Apache 2.1.5 [Remove entries to the current 2.0 section below, when backported] *) Remove the never working ap_method_list_do and ap_method_list_vdo. [Paul Querna] *) Added makefile and doc for building mod_ssl on the NetWare platform. [Guenter Knauf, Brad Nicholes] Loading include/http_protocol.h +1 −8 Original line number Diff line number Diff line Loading @@ -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. Loading modules/http/http_protocol.c +0 −24 Original line number Diff line number Diff line Loading @@ -1272,30 +1272,6 @@ AP_DECLARE(void) ap_copy_method_list(ap_method_list_t *dest, } } /* * Invoke a callback routine for each method in the specified list. */ 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, ...) { va_list vp; va_start(vp, ml); ap_method_list_vdo(comp, rec, ml, vp); va_end(vp); } AP_DECLARE(void) ap_method_list_vdo(int (*comp) (void *mrec, const char *mname, int mnum), void *rec, const ap_method_list_t *ml, va_list vp) { } /* * Return true if the specified HTTP method is in the provided * method list. Loading Loading
CHANGES +3 −0 Original line number Diff line number Diff line Loading @@ -2,6 +2,9 @@ Changes with Apache 2.1.5 [Remove entries to the current 2.0 section below, when backported] *) Remove the never working ap_method_list_do and ap_method_list_vdo. [Paul Querna] *) Added makefile and doc for building mod_ssl on the NetWare platform. [Guenter Knauf, Brad Nicholes] Loading
include/http_protocol.h +1 −8 Original line number Diff line number Diff line Loading @@ -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. Loading
modules/http/http_protocol.c +0 −24 Original line number Diff line number Diff line Loading @@ -1272,30 +1272,6 @@ AP_DECLARE(void) ap_copy_method_list(ap_method_list_t *dest, } } /* * Invoke a callback routine for each method in the specified list. */ 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, ...) { va_list vp; va_start(vp, ml); ap_method_list_vdo(comp, rec, ml, vp); va_end(vp); } AP_DECLARE(void) ap_method_list_vdo(int (*comp) (void *mrec, const char *mname, int mnum), void *rec, const ap_method_list_t *ml, va_list vp) { } /* * Return true if the specified HTTP method is in the provided * method list. Loading