X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;ds=sidebyside;f=php_http_headers_api.h;fp=php_http_headers_api.h;h=d0839561dd32f4df6cf56cf1a5ca14a8bc9bfb85;hb=930417f55598b5b4c54b44e20935450210454fdf;hp=bc352699c8a139262998fc4ba1fd90448f0b8058;hpb=5de7bf562f55eae49d3424670ad56f68458ad7f1;p=m6w6%2Fext-http diff --git a/php_http_headers_api.h b/php_http_headers_api.h index bc35269..d083956 100644 --- a/php_http_headers_api.h +++ b/php_http_headers_api.h @@ -44,6 +44,7 @@ typedef char *(*negotiate_func_t)(const char *test, double *quality, HashTable * #define http_negotiate_language_func _http_negotiate_language_func extern char *_http_negotiate_language_func(const char *test, double *quality, HashTable *supported TSRMLS_DC); +#define http_negotiate_content_type_func _http_negotiate_default_func #define http_negotiate_encoding_func _http_negotiate_default_func #define http_negotiate_charset_func _http_negotiate_default_func #define http_negotiate_default_func _http_negotiate_default_func @@ -55,6 +56,8 @@ extern char *_http_negotiate_default_func(const char *test, double *quality, Has #define http_negotiate_charset_ex(supported) http_negotiate_q("HTTP_ACCEPT_CHARSET", (supported), http_negotiate_charset_func) #define http_negotiate_encoding(zsupported) http_negotiate_encoding_ex(Z_ARRVAL_P(zsupported)) #define http_negotiate_encoding_ex(supported) http_negotiate_q("HTTP_ACCEPT_ENCODING", (supported), http_negotiate_encoding_func) +#define http_negotiate_content_type(zsupported) http_negotiate_content_type_ex(Z_ARRVAL_P(zsupported)) +#define http_negotiate_content_type_ex(supported) http_negotiate_q("HTTP_ACCEPT", (supported), http_negotiate_content_type_func) #define http_negotiate_q(e, s, n) _http_negotiate_q((e), (s), (n) TSRMLS_CC) PHP_HTTP_API HashTable *_http_negotiate_q(const char *header, HashTable *supported, negotiate_func_t neg TSRMLS_DC);