X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_headers.h;h=8eae254e1077075525d92bc40c53e432e4c4a4ce;hp=870957467360ee2b9108c7ddff3e650a33ba6ee5;hb=6519517dbcc5d55117b3fa94572fe93123ddfe56;hpb=5e651aa1fe9e5648f80708a01a6291c2aac5ca71 diff --git a/php_http_headers.h b/php_http_headers.h index 8709574..8eae254 100644 --- a/php_http_headers.h +++ b/php_http_headers.h @@ -17,6 +17,11 @@ PHP_HTTP_API STATUS php_http_headers_parse(const char *header, size_t length, HashTable *headers, php_http_info_callback_t callback_func, void **callback_data TSRMLS_DC); +PHP_HTTP_API void php_http_headers_to_callback(HashTable *headers, zend_bool crlf, php_http_pass_format_callback_t cb, void *cb_arg TSRMLS_DC); +PHP_HTTP_API void php_http_headers_to_string(php_http_buffer_t *str, HashTable *headers TSRMLS_DC); + +PHP_HTTP_API zval *php_http_header_value_to_string(zval *header TSRMLS_DC); + zend_class_entry *php_http_header_get_class_entry(void); PHP_METHOD(HttpHeader, __construct); @@ -24,6 +29,7 @@ PHP_METHOD(HttpHeader, serialize); PHP_METHOD(HttpHeader, unserialize); PHP_METHOD(HttpHeader, match); PHP_METHOD(HttpHeader, negotiate); +PHP_METHOD(HttpHeader, getParams); PHP_METHOD(HttpHeader, parse); PHP_MINIT_FUNCTION(http_header);