From: William A. Rowe Jr Date: Sat, 5 Apr 2008 19:40:22 +0000 (+0000) Subject: In hopes of replacing with - choose another example X-Git-Tag: 2.3.0~807 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=97a2396b125cd67c126e1f23464963626b26be68;p=thirdparty%2Fapache%2Fhttpd.git In hopes of replacing with - choose another example to point to for documenting these functions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@645165 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_protocol.h b/include/http_protocol.h index 276d09bf98f..f2619ed7d40 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -267,7 +267,7 @@ AP_DECLARE(void) ap_copy_method_list(ap_method_list_t *dest, * return true if found. * * @param method String containing the name of the method to check. - * @param l Pointer to a method list, such as cmd->methods_limited. + * @param l Pointer to a method list, such as r->allowed_methods. * @return 1 if method is in the list, otherwise 0 */ AP_DECLARE(int) ap_method_in_list(ap_method_list_t *l, const char *method); @@ -277,7 +277,7 @@ AP_DECLARE(int) ap_method_in_list(ap_method_list_t *l, const char *method); * already listed. * * @param method String containing the name of the method to check. - * @param l Pointer to a method list, such as cmd->methods_limited. + * @param l Pointer to a method list, such as r->allowed_methods. * @return None. */ AP_DECLARE(void) ap_method_list_add(ap_method_list_t *l, const char *method); @@ -285,7 +285,7 @@ AP_DECLARE(void) ap_method_list_add(ap_method_list_t *l, const char *method); /** * Remove an HTTP method name from an ap_method_list_t structure. * - * @param l Pointer to a method list, such as cmd->methods_limited. + * @param l Pointer to a method list, such as r->allowed_methods. * @param method String containing the name of the method to remove. * @return None. */ @@ -295,7 +295,7 @@ AP_DECLARE(void) ap_method_list_remove(ap_method_list_t *l, /** * Reset a method list to be completely empty. * - * @param l Pointer to a method list, such as cmd->methods_limited. + * @param l Pointer to a method list, such as r->allowed_methods. * @return None. */ AP_DECLARE(void) ap_clear_method_list(ap_method_list_t *l);