X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_request_method_api.c;h=b587474d26a53c33c70ce44cecc15554f0b56e62;hp=3359b28ad501f5fce3b474b7fbb0b80b7678f114;hb=1b9170b43e1c72ef87be685d7075dc0be60e4a04;hpb=98d8a1dced6ae8bde1953f439de7fd9c453e5971 diff --git a/http_request_method_api.c b/http_request_method_api.c index 3359b28..b587474 100644 --- a/http_request_method_api.c +++ b/http_request_method_api.c @@ -6,7 +6,7 @@ | modification, are permitted provided that the conditions mentioned | | in the accompanying LICENSE file are met. | +--------------------------------------------------------------------+ - | Copyright (c) 2004-2006, Michael Wallner | + | Copyright (c) 2004-2007, Michael Wallner | +--------------------------------------------------------------------+ */ @@ -191,7 +191,7 @@ PHP_HTTP_API int _http_request_method_register(const char *method_name, int meth char *http_method, *method, *mconst; http_request_method_entry **ptr = HTTP_G->request.methods.custom.entries; - if (!isalpha(*method_name)) { + if (!HTTP_IS_CTYPE(alpha, *method_name)) { http_error_ex(HE_WARNING, HTTP_E_REQUEST_METHOD, "Request method does not start with a character (%s)", method_name); return 0; } @@ -211,13 +211,13 @@ PHP_HTTP_API int _http_request_method_register(const char *method_name, int meth break; default: - if (!isalnum(method_name[i])) { + if (!HTTP_IS_CTYPE(alnum, method_name[i])) { efree(method); efree(mconst); http_error_ex(HE_WARNING, HTTP_E_REQUEST_METHOD, "Request method contains illegal characters (%s)", method_name); return 0; } - mconst[i] = method[i] = toupper(method_name[i]); + mconst[i] = method[i] = HTTP_TO_CTYPE(upper, method_name[i]); break; } } @@ -260,7 +260,7 @@ PHP_HTTP_API STATUS _http_request_method_unregister(int method TSRMLS_DC) if ( (HTTP_CUSTOM_REQUEST_METHOD(method) < 0) || (HTTP_CUSTOM_REQUEST_METHOD(method) > HTTP_G->request.methods.custom.count) || (!ptr[HTTP_CUSTOM_REQUEST_METHOD(method)])) { - http_error_ex(HE_NOTICE, HTTP_E_REQUEST_METHOD, "Custom request method with id %lu does not exist", method); + http_error_ex(HE_NOTICE, HTTP_E_REQUEST_METHOD, "Custom request method with id %d does not exist", method); return FAILURE; }