X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_request_method_api.h;h=ed0d8a7291b5dec1e246233e7f98b08ecda437f1;hp=6958cbdae56cb437ec6843c74f443c66b6a2c634;hb=39feb7a7e30bb4b393a6f76aa2f35d4e9275523e;hpb=61f165688d2cc39424678829a145c8cbab51d1af diff --git a/php_http_request_method_api.h b/php_http_request_method_api.h index 6958cbd..ed0d8a7 100644 --- a/php_http_request_method_api.h +++ b/php_http_request_method_api.h @@ -57,6 +57,9 @@ typedef enum { HTTP_MAX_REQUEST_METHOD = 28 } http_request_method; +#define http_request_method_global_init() _http_request_method_global_init(INIT_FUNC_ARGS_PASSTHRU) +STATUS _http_request_method_global_init(INIT_FUNC_ARGS); + #define HTTP_STD_REQUEST_METHOD(m) ((m > HTTP_NO_REQUEST_METHOD) && (m < HTTP_MAX_REQUEST_METHOD)) #define HTTP_CUSTOM_REQUEST_METHOD(m) (m - HTTP_MAX_REQUEST_METHOD) @@ -66,8 +69,8 @@ PHP_HTTP_API const char *_http_request_method_name(http_request_method m TSRMLS_ #define http_request_method_exists(u, l, c) _http_request_method_exists((u), (l), (c) TSRMLS_CC) PHP_HTTP_API unsigned long _http_request_method_exists(zend_bool by_name, unsigned long id, const char *name TSRMLS_DC); -#define http_request_method_register(m) _http_request_method_register((m) TSRMLS_CC) -PHP_HTTP_API unsigned long _http_request_method_register(const char *method TSRMLS_DC); +#define http_request_method_register(m, l) _http_request_method_register((m), (l) TSRMLS_CC) +PHP_HTTP_API unsigned long _http_request_method_register(const char *method, size_t method_name_len TSRMLS_DC); #define http_request_method_unregister(mn) _http_request_method_unregister((mn) TSRMLS_CC) PHP_HTTP_API STATUS _http_request_method_unregister(unsigned long method TSRMLS_DC);