X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_headers_api.h;h=7f22e2a1eecc131fb3e566c7cd07b53bcfdf603b;hp=a35fe07cfc1e37c16d3d38f4a3b66dae071fba11;hb=refs%2Fheads%2Fv1.7.x;hpb=edc84b40eb2c5be04492fa98fec5833a030782eb diff --git a/php_http_headers_api.h b/php_http_headers_api.h index a35fe07..7f22e2a 100644 --- a/php_http_headers_api.h +++ b/php_http_headers_api.h @@ -6,7 +6,7 @@ | modification, are permitted provided that the conditions mentioned | | in the accompanying LICENSE file are met. | +--------------------------------------------------------------------+ - | Copyright (c) 2004-2005, Michael Wallner | + | Copyright (c) 2004-2010, Michael Wallner | +--------------------------------------------------------------------+ */ @@ -17,28 +17,17 @@ #include "php_http_info_api.h" -#define HTTP_REDIRECT 302L -#define HTTP_REDIRECT_PERM 301L -#define HTTP_REDIRECT_POST 303L -#define HTTP_REDIRECT_TEMP 307L - -typedef enum { +typedef enum http_range_status_t { RANGE_OK, RANGE_NO, RANGE_ERR } http_range_status; -extern PHP_MINIT_FUNCTION(http_headers); - #define http_parse_headers(h, a) _http_parse_headers_ex((h), Z_ARRVAL_P(a), 1, http_info_default_callback, NULL TSRMLS_CC) #define http_parse_headers_ex(h, ht, p) _http_parse_headers_ex((h), (ht), (p), http_info_default_callback, NULL TSRMLS_CC) #define http_parse_headers_cb(h, ht, p, f, d) _http_parse_headers_ex((h), (ht), (p), (f), (d) TSRMLS_CC) PHP_HTTP_API STATUS _http_parse_headers_ex(const char *header, HashTable *headers, zend_bool prettify, http_info_callback callback_func, void **callback_data TSRMLS_DC); -#define http_get_request_headers(h) _http_get_request_headers_ex(Z_ARRVAL_P(h), 1 TSRMLS_CC) -#define http_get_request_headers_ex(h, p) _http_get_request_headers_ex((h), (p) TSRMLS_CC) -PHP_HTTP_API void _http_get_request_headers_ex(HashTable *headers, zend_bool prettify TSRMLS_DC); - typedef char *(*negotiate_func_t)(const char *test, double *quality, HashTable *supported TSRMLS_DC); #define http_negotiate_language_func _http_negotiate_language_func @@ -59,10 +48,18 @@ extern char *_http_negotiate_default_func(const char *test, double *quality, Has #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); +#define http_negotiate_z(z, s, n) _http_negotiate_z((z), (s), (n) TSRMLS_CC) +PHP_HTTP_API HashTable *_http_negotiate_z(zval *value, HashTable *supported, negotiate_func_t neg TSRMLS_DC); #define http_get_request_ranges(r, l) _http_get_request_ranges((r), (l) TSRMLS_CC) PHP_HTTP_API http_range_status _http_get_request_ranges(HashTable *ranges, size_t length TSRMLS_DC); +#define http_get_request_headers(h) _http_get_request_headers((h) TSRMLS_CC) +PHP_HTTP_API void _http_get_request_headers(HashTable *headers TSRMLS_DC); + +#define http_get_response_headers(h) _http_get_response_headers((h) TSRMLS_CC) +PHP_HTTP_API STATUS _http_get_response_headers(HashTable *headers_ht TSRMLS_DC); + #define http_match_request_header(h, v) http_match_request_header_ex((h), (v), 0) #define http_match_request_header_ex(h, v, c) _http_match_request_header_ex((h), (v), (c) TSRMLS_CC) PHP_HTTP_API zend_bool _http_match_request_header_ex(const char *header, const char *value, zend_bool match_case TSRMLS_DC);