Searched refs:methname (Results 1 - 2 of 2) sorted by relevance

/httpd/include/
H A Dhttp_protocol.h290 * @param methname The name of the new method to register.
293 AP_DECLARE(int) ap_method_register(apr_pool_t *p, const char *methname);
306 #define AP_METHOD_CHECK_ALLOWED(mask, methname) \
307 ((mask) & (AP_METHOD_BIT << ap_method_number_of((methname))))
/httpd/modules/http/
H A Dhttp_protocol.c644 static void register_one_method(apr_pool_t *p, const char *methname, argument
650 apr_hash_set(methods_registry, methname, APR_HASH_KEY_STRING, pnum);
702 AP_DECLARE(int) ap_method_register(apr_pool_t *p, const char *methname) argument
710 if (methname == NULL) {
717 methnum = (int *)apr_hash_get(methods_registry, methname,
729 METHOD_NUMBER_LAST, methname);
733 register_one_method(p, methname, cur_method_number);

Completed in 14 milliseconds