X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_headers_api.h;h=52c0a505635c349ab2a6c9f950dcc747850d7daf;hp=d0839561dd32f4df6cf56cf1a5ca14a8bc9bfb85;hb=f9a650f4b1ed0baad4a41f6e130991f328dc64b9;hpb=930417f55598b5b4c54b44e20935450210454fdf diff --git a/php_http_headers_api.h b/php_http_headers_api.h index d083956..52c0a50 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-2006, Michael Wallner | +--------------------------------------------------------------------+ */ @@ -15,22 +15,14 @@ #ifndef PHP_HTTP_HEADERS_API_H #define PHP_HTTP_HEADERS_API_H -#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 { +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)