1
0
mirror of https://github.com/apache/httpd.git synced 2025-11-09 15:21:02 +03:00

More prototypical API support for arbitrary extension HTTP methods.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86054 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ken Coar
2000-08-11 23:45:57 +00:00
parent db1852bded
commit 001a3da2cd
2 changed files with 36 additions and 0 deletions

View File

@@ -470,6 +470,15 @@ CORE_EXPORT(void) ap_parse_uri(request_rec *r, const char *uri);
*/
API_EXPORT(int) ap_method_number_of(const char *method);
/**
* Get the method name associated with the given internal method
* number. Returns NULL if not recognized.
* @param methnum An integer value corresponding to an internal method number
* @return The name corresponding to the method number
* @deffunc const char *ap_method_name_of(int methnum)
*/
API_EXPORT(const char *) ap_method_name_of(int methnum);
/* Hooks */
/*
* post_read_request --- run right after read_request or internal_redirect,