/* {{{ static inline STATUS http_check_allowed_methods(char *, int) */
#define http_check_allowed_methods(m, l) _http_check_allowed_methods((m), (l) TSRMLS_CC)
-static inline STATUS _http_check_allowed_methods(char *methods, int length TSRMLS_DC)
+static inline void _http_check_allowed_methods(char *methods, int length TSRMLS_DC)
{
if (length && SG(request_info).request_method && (!strstr(methods, SG(request_info).request_method))) {
char *allow_header = emalloc(length + sizeof("Allow: "));
http_send_header(allow_header);
efree(allow_header);
http_send_status(405);
- return FAILURE;
+ zend_bailout();
}
- return SUCCESS;
}
/* }}} */
/* {{{ PHP_INI */
PHP_INI_MH(update_allowed_methods)
{
- if (SUCCESS != http_check_allowed_methods(new_value, new_value_length)) {
- return FAILURE;
- }
+ http_check_allowed_methods(new_value, new_value_length);
return OnUpdateString(entry, new_value, new_value_length, mh_arg1, mh_arg2, mh_arg3, stage TSRMLS_CC);
}
PHP_INI_BEGIN()
- STD_PHP_INI_ENTRY("http.allowed_methods", "HEAD,GET,POST", PHP_INI_ALL, update_allowed_methods, allowed_methods, zend_http_globals, http_globals)
+ STD_PHP_INI_ENTRY("http.allowed_methods", "OPTIONS,GET,HEAD,POST,PUT,DELETE,TRACE,CONNECT", PHP_INI_ALL, update_allowed_methods, allowed_methods, zend_http_globals, http_globals)
PHP_INI_END()
/* }}} */
PHP_RINIT_FUNCTION(http)
{
char *allowed_methods = INI_STR("http.allowed_methods");
- return http_check_allowed_methods(allowed_methods, strlen(allowed_methods));
+ http_check_allowed_methods(allowed_methods, strlen(allowed_methods));
+ return SUCCESS;
}
/* }}} */
PHP_HTTP_API char *_http_date(time_t t TSRMLS_DC)
{
struct tm *gmtime, tmbuf;
- char *date = ecalloc(1, 30);
+ char *date = ecalloc(31, 1);
gmtime = php_gmtime_r(&t, &tmbuf);
- snprintf(date, 29,
+ snprintf(date, 30,
"%s, %02d %s %04d %02d:%02d:%02d GMT",
days[gmtime->tm_wday], gmtime->tm_mday,
months[gmtime->tm_mon], gmtime->tm_year + 1900,
int header_len;
char *etag_header;
- header_len = strlen("ETag: \"\"") + etag_len + 1;
- etag_header = (char *) emalloc(header_len);
- snprintf(etag_header, header_len - 1, "ETag: \"%s\"", etag);
+ header_len = sizeof("ETag: \"\"") + etag_len + 1;
+ etag_header = ecalloc(header_len, 1);
+ sprintf(etag_header, "ETag: \"%s\"", etag);
ret = http_send_header(etag_header);
efree(etag_header);
{
char *colon = NULL, *line = NULL, *begin = header;
- if (header_len < 8) {
+ if (header_len < 2) {
return FAILURE;
}
if (value_len < 1) {
/* hm, empty header? */
- add_assoc_stringl(array, key, "", 0, 0);
+ add_assoc_stringl(array, key, "", 0, 1);
} else {
add_assoc_stringl(array, key, colon, value_len, 1);
}
<release>
<version>0.4.0</version>
- <date>2005-02-xx</date>
+ <date>2005-02-00</date>
<state>alpha</state>
- <notes><![CDATA[
+ <notes><![CDATA[*
]]>
</notes>
</release>
#ifndef PHP_EXT_HTTP_H
#define PHP_EXT_HTTP_H
-#define PHP_EXT_HTTP_VERSION "0.4.0"
+#define PHP_EXT_HTTP_VERSION "0.4.0-dev"
/* make compile on Win32 */
#include "php_streams.h"