Lines Matching refs:method

286  * Register a new request method, and return the offset that will be
287 * associated with that method.
289 * @param p The pool to create registered method numbers from.
290 * @param methname The name of the new method to register.
304 * against a method name.
310 * Create a new method list with the specified number of preallocated
322 * Copy a method list
331 * Search for an HTTP method name in an ap_method_list_t structure, and
334 * @param method String containing the name of the method to check.
335 * @param l Pointer to a method list, such as r->allowed_methods.
336 * @return 1 if method is in the list, otherwise 0
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
344 * @param method String containing the name of the method to check.
345 * @param l Pointer to a method list, such as r->allowed_methods.
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.
353 * @param l Pointer to a method list, such as r->allowed_methods.
354 * @param method String containing the name of the method to remove.
358 const char *method);
361 * Reset a method list to be completely empty.
363 * @param l Pointer to a method list, such as r->allowed_methods.
523 * In HTTP/1.1, any method can have a body. However, most GET handlers
636 * Get the method number associated with the given string, assumed to
637 * contain an HTTP method. Returns M_INVALID if not recognized.
638 * @param method A string containing a valid HTTP method
639 * @return The method number
641 AP_DECLARE(int) ap_method_number_of(const char *method);
644 * Get the method name associated with the given internal method
647 * @param methnum An integer value corresponding to an internal method number
648 * @return The name corresponding to the method number