X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http_headers_api.h;h=8b3b95f1771e7309118fb6f25369fd2107c8a4b8;hb=ac76ec181d08202752bce22300fd8005efb1947c;hp=329d650093e5d545c344ff96483a48895ece0508;hpb=5efb94c93bc4c1d4873706958962acc4313477f3;p=m6w6%2Fext-http diff --git a/php_http_headers_api.h b/php_http_headers_api.h index 329d650..8b3b95f 100644 --- a/php_http_headers_api.h +++ b/php_http_headers_api.h @@ -21,12 +21,19 @@ #include "php_http_std_defs.h" #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 { 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)