Merge branch 'v2.6.x'
authorMichael Wallner <mike@php.net>
Thu, 8 Sep 2016 06:30:51 +0000 (08:30 +0200)
committerMichael Wallner <mike@php.net>
Thu, 8 Sep 2016 06:30:51 +0000 (08:30 +0200)
1  2 
src/php_http_info.c
src/php_http_info.h
src/php_http_message.c
src/php_http_version.c

diff --combined src/php_http_info.c
index 4e43fda8eaa27888c6b72aca907d8e2f5fcf1ac7,81bf727b1e4d135bf931af3b084984743f41dc0a..cbaee88490c17421a7c618f7653ed2c6c8c819bc
@@@ -12,7 -12,7 +12,7 @@@
  
  #include "php_http_api.h"
  
 -php_http_info_t *php_http_info_init(php_http_info_t *i TSRMLS_DC)
 +php_http_info_t *php_http_info_init(php_http_info_t *i)
  {
        if (!i) {
                i = emalloc(sizeof(*i));
@@@ -30,11 -30,11 +30,11 @@@ void php_http_info_dtor(php_http_info_
                        PTR_SET(PHP_HTTP_INFO(i).request.method, NULL);
                        PTR_SET(PHP_HTTP_INFO(i).request.url, NULL);
                        break;
 -              
 +
                case PHP_HTTP_RESPONSE:
                        PTR_SET(PHP_HTTP_INFO(i).response.status, NULL);
                        break;
 -              
 +
                default:
                        break;
        }
@@@ -49,29 -49,69 +49,69 @@@ void php_http_info_free(php_http_info_
        }
  }
  
 -void php_http_info_to_string(php_http_info_t *info, char **str, size_t *len, const char *eol TSRMLS_DC)
++void php_http_info_to_string(php_http_info_t *info, char **str, size_t *len, const char *eol)
+ {
+       char *tmp = NULL;
+       if (info->http.version.major == 2) {
+               if (info->type == PHP_HTTP_REQUEST) {
+                       *len = spprintf(str, 0, "%s %s HTTP/2%s",
+                                       info->http.info.request.method?info->http.info.request.method:"UNKNOWN",
+                                       info->http.info.request.method&&!strcasecmp(info->http.info.request.method,"CONNECT")?(
+                                       info->http.info.request.url?php_http_url_authority_to_string(info->http.info.request.url, &(tmp), NULL):"0"):(
+                                       info->http.info.request.url?php_http_url_to_string(info->http.info.request.url, &(tmp), NULL, 0):"/"),
+                                       eol);
+               } else if (info->type == PHP_HTTP_RESPONSE) {
+                       *len = spprintf(str, 0, "HTTP/2 %d%s%s%s",
+                                       info->http.info.response.code?info->http.info.response.code:200,
+                                       info->http.info.response.status&&*info->http.info.response.status ? " ":"",
+                                       STR_PTR(info->http.info.response.status),
+                                       eol);
+               }
+       } else if (info->type == PHP_HTTP_REQUEST) {
+               *len = spprintf(str, 0, "%s %s HTTP/%u.%u%s",
+                               info->http.info.request.method?info->http.info.request.method:"UNKNOWN",
+                               info->http.info.request.method&&!strcasecmp(info->http.info.request.method,"CONNECT")?(
+                               info->http.info.request.url?php_http_url_authority_to_string(info->http.info.request.url, &(tmp), NULL):"0"):(
+                               info->http.info.request.url?php_http_url_to_string(info->http.info.request.url, &(tmp), NULL, 0):"/"),
+                               info->http.version.major||info->http.version.major?info->http.version.major:1,
+                               info->http.version.major||info->http.version.minor?info->http.version.minor:1,
+                               eol);
+       } else if (info->type == PHP_HTTP_RESPONSE){
+               *len = spprintf(str, 0, "HTTP/%u.%u %d%s%s%s", info->http.version.major||info->http.version.major?info->http.version.major:1,
+                               info->http.version.major||info->http.version.minor?info->http.version.minor:1,
+                               info->http.info.response.code?info->http.info.response.code:200,
+                               info->http.info.response.status&&*info->http.info.response.status ? " ":"",
+                               STR_PTR(info->http.info.response.status),
+                               eol);
+       }
 -      STR_FREE(tmp);
++      PTR_FREE(tmp);
+ }
 -php_http_info_t *php_http_info_parse(php_http_info_t *info, const char *pre_header TSRMLS_DC)
 +php_http_info_t *php_http_info_parse(php_http_info_t *info, const char *pre_header)
  {
        const char *end, *http, *off;
        zend_bool free_info = !info;
 -      
 +
        /* sane parameter */
        if ((!pre_header) || (!*pre_header)) {
                return NULL;
        }
 -      
 +
        /* where's the end of the line */
        if (!(end = php_http_locate_eol(pre_header, NULL))) {
                end = pre_header + strlen(pre_header);
        }
 -      
 +
        /* there must be HTTP/1.x in the line */
        if (!(http = php_http_locate_str(pre_header, end - pre_header, "HTTP/", lenof("HTTP/")))) {
                return NULL;
        }
 -      
 -      info = php_http_info_init(info TSRMLS_CC);
  
 -      if (!php_http_version_parse(&info->http.version, http TSRMLS_CC)) {
 +      info = php_http_info_init(info);
 +
 +      if (!php_http_version_parse(&info->http.version, http)) {
                if (free_info) {
                        php_http_info_free(&info);
                }
  
        /* clumsy fix for changed libcurl behaviour in 7.49.1, see https://github.com/curl/curl/issues/888 */
        off = &http[lenof("HTTP/X")];
-       if (info->http.version.major < 2) {
+       if (info->http.version.major < 2 || (info->http.version.major == 2 && *off == '.')) {
                off += 2;
        }
  
        /* is response */
        if (pre_header == http) {
                const char *status = NULL, *code = off;
 -              
 +
                info->type = PHP_HTTP_RESPONSE;
 -              while (' ' == *code) ++code;
 +              while (code < end && ' ' == *code) ++code;
                if (end > code) {
                        /* rfc7230#3.1.2 The status-code element is a 3-digit integer code */
                        PHP_HTTP_INFO(info).response.code = 100*(*code++ - '0');
                } else {
                        PHP_HTTP_INFO(info).response.status = NULL;
                }
 -              
 +
                return info;
        }
 -      
 +
        /* is request */
        else if (*(http - 1) == ' ' && (!*off || *off == '\r' || *off == '\n')) {
                const char *url = strchr(pre_header, ' ');
 -              
 +
                info->type = PHP_HTTP_REQUEST;
                if (url && http > url) {
                        size_t url_len = url - pre_header;
                        if (http > url) {
                                /* CONNECT presents an authority only */
                                if (strcasecmp(PHP_HTTP_INFO(info).request.method, "CONNECT")) {
 -                                      PHP_HTTP_INFO(info).request.url = php_http_url_parse(url, http - url, PHP_HTTP_URL_STDFLAGS TSRMLS_CC);
 +                                      PHP_HTTP_INFO(info).request.url = php_http_url_parse(url, http - url, PHP_HTTP_URL_STDFLAGS);
                                } else {
 -                                      PHP_HTTP_INFO(info).request.url = php_http_url_parse_authority(url, http - url, PHP_HTTP_URL_STDFLAGS TSRMLS_CC);
 +                                      PHP_HTTP_INFO(info).request.url = php_http_url_parse_authority(url, http - url, PHP_HTTP_URL_STDFLAGS);
                                }
                                if (!PHP_HTTP_INFO(info).request.url) {
                                        PTR_SET(PHP_HTTP_INFO(info).request.method, NULL);
                        PHP_HTTP_INFO(info).request.method = NULL;
                        PHP_HTTP_INFO(info).request.url = NULL;
                }
 -              
 +
                return info;
        }
  
diff --combined src/php_http_info.h
index 8a52ee2df19adf543a89e0be0b6adab47e42ed8a,e1cce6fc6766a876591ee308af41f4e1ebad7515..700dd34d96431b4ba670364d03390748fd3d6332
  #include "php_http_version.h"
  #include "php_http_url.h"
  
- #define PHP_HTTP_INFO_REQUEST_FMT_ARGS(_http_ptr, tmp, eol) "%s %s HTTP/%u.%u" eol, \
-                               (_http_ptr)->info.request.method?(_http_ptr)->info.request.method:"UNKNOWN", \
-                               (_http_ptr)->info.request.method&&!strcasecmp((_http_ptr)->info.request.method,"CONNECT")?( \
-                               (_http_ptr)->info.request.url?php_http_url_authority_to_string((_http_ptr)->info.request.url, &(tmp), NULL):"0"):( \
-                               (_http_ptr)->info.request.url?php_http_url_to_string((_http_ptr)->info.request.url, &(tmp), NULL, 0):"/"), \
-                               (_http_ptr)->version.major||(_http_ptr)->version.major?(_http_ptr)->version.major:1, \
-                               (_http_ptr)->version.major||(_http_ptr)->version.minor?(_http_ptr)->version.minor:1
- #define PHP_HTTP_INFO_RESPONSE_FMT_ARGS(_http_ptr, tmp, eol) "HTTP/%u.%u %d%s%s" eol, \
-                               (_http_ptr)->version.major||(_http_ptr)->version.major?(_http_ptr)->version.major:1, \
-                               (_http_ptr)->version.major||(_http_ptr)->version.minor?(_http_ptr)->version.minor:1, \
-                               (_http_ptr)->info.response.code?(_http_ptr)->info.response.code:200, \
-                               (_http_ptr)->info.response.status&&*(_http_ptr)->info.response.status ? " ":"", \
-                               STR_PTR((_http_ptr)->info.response.status)
  typedef struct php_http_info_data {
        union {
                /* GET /foo/bar */
@@@ -41,8 -26,6 +26,8 @@@
        php_http_version_t version;
  } php_http_info_data_t;
  
 +#undef PHP_HTTP_REQUEST
 +#undef PHP_HTTP_RESPONSE
  typedef enum php_http_info_type {
        PHP_HTTP_NONE = 0,
        PHP_HTTP_REQUEST,
@@@ -58,10 -41,11 +43,11 @@@ typedef struct php_http_info 
        PHP_HTTP_INFO_IMPL(http, type)
  } php_http_info_t;
  
 -typedef zend_bool (*php_http_info_callback_t)(void **callback_data, HashTable **headers, php_http_info_t *info TSRMLS_DC);
 +typedef zend_bool (*php_http_info_callback_t)(void **callback_data, HashTable **headers, php_http_info_t *info);
  
 -PHP_HTTP_API php_http_info_t *php_http_info_init(php_http_info_t *info TSRMLS_DC);
 -PHP_HTTP_API php_http_info_t *php_http_info_parse(php_http_info_t *info, const char *pre_header TSRMLS_DC);
 -PHP_HTTP_API void php_http_info_to_string(php_http_info_t *info, char **str, size_t *len, const char *eol TSRMLS_DC);
 +PHP_HTTP_API php_http_info_t *php_http_info_init(php_http_info_t *info);
 +PHP_HTTP_API php_http_info_t *php_http_info_parse(php_http_info_t *info, const char *pre_header);
++PHP_HTTP_API void php_http_info_to_string(php_http_info_t *info, char **str, size_t *len, const char *eol);
  PHP_HTTP_API void php_http_info_dtor(php_http_info_t *info);
  PHP_HTTP_API void php_http_info_free(php_http_info_t **info);
  
diff --combined src/php_http_message.c
index 078ae4cea4f90fa28a478fc837f920f0546ad06c,60569b8be62f336f2199ba72196c6fe1f8178e03..5a5b5ca4f0d222c3e085b8cf763dcbf900fad934
  
  static void message_headers(php_http_message_t *msg, php_http_buffer_t *str);
  
 -zend_bool php_http_message_info_callback(php_http_message_t **message, HashTable **headers, php_http_info_t *info TSRMLS_DC)
 +zend_bool php_http_message_info_callback(php_http_message_t **message, HashTable **headers, php_http_info_t *info)
  {
        php_http_message_t *old = *message;
  
        /* advance message */
        if (!old || old->type || zend_hash_num_elements(&old->hdrs)) {
 -              (*message) = php_http_message_init(NULL, 0, NULL TSRMLS_CC);
 +              (*message) = php_http_message_init(NULL, 0, NULL);
                (*message)->parent = old;
                if (headers) {
                        (*headers) = &((*message)->hdrs);
        return old != *message;
  }
  
 -php_http_message_t *php_http_message_init(php_http_message_t *message, php_http_message_type_t type, php_http_message_body_t *body TSRMLS_DC)
 +php_http_message_t *php_http_message_init(php_http_message_t *message, php_http_message_type_t type, php_http_message_body_t *body)
  {
        if (!message) {
                message = emalloc(sizeof(*message));
        }
        memset(message, 0, sizeof(*message));
 -      TSRMLS_SET_CTX(message->ts);
  
        php_http_message_set_type(message, type);
        message->http.version.major = 1;
        message->http.version.minor = 1;
        zend_hash_init(&message->hdrs, 0, NULL, ZVAL_PTR_DTOR, 0);
 -      message->body = body ? body : php_http_message_body_init(NULL, NULL TSRMLS_CC);
 +      message->body = body ? body : php_http_message_body_init(NULL, NULL);
  
        return message;
  }
  
 -php_http_message_t *php_http_message_init_env(php_http_message_t *message, php_http_message_type_t type TSRMLS_DC)
 +php_http_message_t *php_http_message_init_env(php_http_message_t *message, php_http_message_type_t type)
  {
        int free_msg = !message;
        zval *sval, tval;
  
        switch (type) {
                case PHP_HTTP_REQUEST:
 -                      mbody = php_http_env_get_request_body(TSRMLS_C);
 +                      mbody = php_http_env_get_request_body();
                        php_http_message_body_addref(mbody);
 -                      message = php_http_message_init(message, type, mbody TSRMLS_CC);
 -                      if ((sval = php_http_env_get_server_var(ZEND_STRL("SERVER_PROTOCOL"), 1 TSRMLS_CC)) && !strncmp(Z_STRVAL_P(sval), "HTTP/", lenof("HTTP/"))) {
 -                              php_http_version_parse(&message->http.version, Z_STRVAL_P(sval) TSRMLS_CC);
 +                      message = php_http_message_init(message, type, mbody);
 +                      if ((sval = php_http_env_get_server_var(ZEND_STRL("SERVER_PROTOCOL"), 1)) && !strncmp(Z_STRVAL_P(sval), "HTTP/", lenof("HTTP/"))) {
 +                              php_http_version_parse(&message->http.version, Z_STRVAL_P(sval));
                        }
 -                      if ((sval = php_http_env_get_server_var(ZEND_STRL("REQUEST_METHOD"), 1 TSRMLS_CC))) {
 +                      if ((sval = php_http_env_get_server_var(ZEND_STRL("REQUEST_METHOD"), 1))) {
                                message->http.info.request.method = estrdup(Z_STRVAL_P(sval));
                        }
 -                      if ((sval = php_http_env_get_server_var(ZEND_STRL("REQUEST_URI"), 1 TSRMLS_CC))) {
 -                              message->http.info.request.url = php_http_url_parse(Z_STRVAL_P(sval), Z_STRLEN_P(sval), PHP_HTTP_URL_STDFLAGS TSRMLS_CC);
 +                      if ((sval = php_http_env_get_server_var(ZEND_STRL("REQUEST_URI"), 1))) {
 +                              message->http.info.request.url = php_http_url_parse(Z_STRVAL_P(sval), Z_STRLEN_P(sval), PHP_HTTP_URL_STDFLAGS);
                        }
  
 -                      php_http_env_get_request_headers(&message->hdrs TSRMLS_CC);
 +                      php_http_env_get_request_headers(&message->hdrs);
                        break;
  
                case PHP_HTTP_RESPONSE:
 -                      message = php_http_message_init(NULL, type, NULL TSRMLS_CC);
 -                      if (!SG(sapi_headers).http_status_line || !php_http_info_parse((php_http_info_t *) &message->http, SG(sapi_headers).http_status_line TSRMLS_CC)) {
 +                      message = php_http_message_init(NULL, type, NULL);
 +                      if (!SG(sapi_headers).http_status_line || !php_http_info_parse((php_http_info_t *) &message->http, SG(sapi_headers).http_status_line)) {
                                if (!(message->http.info.response.code = SG(sapi_headers).http_response_code)) {
                                        message->http.info.response.code = 200;
                                }
                                message->http.info.response.status = estrdup(php_http_env_get_response_status_for_code(message->http.info.response.code));
                        }
  
 -                      php_http_env_get_response_headers(&message->hdrs TSRMLS_CC);
 -#if PHP_VERSION_ID >= 50400
 -                      if (php_output_get_level(TSRMLS_C)) {
 -                              if (php_output_get_status(TSRMLS_C) & PHP_OUTPUT_SENT) {
 -                                      php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not fetch response body, output has already been sent at %s:%d", php_output_get_start_filename(TSRMLS_C), php_output_get_start_lineno(TSRMLS_C));
 -                                      goto error;
 -                              } else if (SUCCESS != php_output_get_contents(&tval TSRMLS_CC)) {
 -                                      php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not fetch response body");
 -                                      goto error;
 -                              } else {
 -                                      php_http_message_body_append(message->body, Z_STRVAL(tval), Z_STRLEN(tval));
 -                                      zval_dtor(&tval);
 -                              }
 -                      }
 -#else
 -                      if (OG(ob_nesting_level)) {
 -                              if (php_get_output_start_filename(TSRMLS_C)) {
 -                                      php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not fetch response body, output has already been sent at %s:%d", php_get_output_start_filename(TSRMLS_C), php_get_output_start_lineno(TSRMLS_C));
 +                      php_http_env_get_response_headers(&message->hdrs);
 +                      if (php_output_get_level()) {
 +                              if (php_output_get_status() & PHP_OUTPUT_SENT) {
 +                                      php_error_docref(NULL, E_WARNING, "Could not fetch response body, output has already been sent at %s:%d", php_output_get_start_filename(), php_output_get_start_lineno());
 +
                                        goto error;
 -                              } else if (SUCCESS != php_ob_get_buffer(&tval TSRMLS_CC)) {
 -                                      php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not fetch response body");
 +                              } else if (SUCCESS != php_output_get_contents(&tval)) {
 +                                      php_error_docref(NULL, E_WARNING, "Could not fetch response body");
                                        goto error;
                                } else {
                                        php_http_message_body_append(message->body, Z_STRVAL(tval), Z_STRLEN(tval));
                                        zval_dtor(&tval);
                                }
                        }
 -#endif
                        break;
  
                default:
        return message;
  }
  
 -php_http_message_t *php_http_message_parse(php_http_message_t *msg, const char *str, size_t len, zend_bool greedy TSRMLS_DC)
 +php_http_message_t *php_http_message_parse(php_http_message_t *msg, const char *str, size_t len, zend_bool greedy)
  {
        php_http_message_parser_t p;
        php_http_buffer_t buf;
        int free_msg;
  
        php_http_buffer_from_string_ex(&buf, str, len);
 -      php_http_message_parser_init(&p TSRMLS_CC);
 +      php_http_message_parser_init(&p);
  
        if ((free_msg = !msg)) {
 -              msg = php_http_message_init(NULL, 0, NULL TSRMLS_CC);
 +              msg = php_http_message_init(NULL, 0, NULL);
        }
  
        if (greedy) {
        return msg;
  }
  
 -zval *php_http_message_header(php_http_message_t *msg, const char *key_str, size_t key_len, int join)
 +zval *php_http_message_header(php_http_message_t *msg, const char *key_str, size_t key_len)
  {
 -      zval *ret = NULL, **header;
 +      zval *ret;
        char *key;
        ALLOCA_FLAG(free_key);
  
        key = do_alloca(key_len + 1, free_key);
 +
        memcpy(key, key_str, key_len);
        key[key_len] = '\0';
        php_http_pretty_key(key, key_len, 1, 1);
  
 -      if (SUCCESS == zend_symtable_find(&msg->hdrs, key, key_len + 1, (void *) &header)) {
 -              if (join && Z_TYPE_PP(header) == IS_ARRAY) {
 -                      TSRMLS_FETCH_FROM_CTX(msg->ts);
 -
 -                      ret = php_http_header_value_to_string(*header TSRMLS_CC);
 -              } else {
 -                      Z_ADDREF_PP(header);
 -                      ret = *header;
 -              }
 -      }
 +      ret = zend_symtable_str_find(&msg->hdrs, key, key_len);
  
        free_alloca(key, free_key);
  
  
  zend_bool php_http_message_is_multipart(php_http_message_t *msg, char **boundary)
  {
 -      zval *ct = php_http_message_header(msg, ZEND_STRL("Content-Type"), 1);
 +      zend_string *ct = php_http_message_header_string(msg, ZEND_STRL("Content-Type"));
        zend_bool is_multipart = 0;
 -      TSRMLS_FETCH_FROM_CTX(msg->ts);
  
        if (ct) {
                php_http_params_opts_t popts;
  
                ZEND_INIT_SYMTABLE(&params);
                php_http_params_opts_default_get(&popts);
 -              popts.input.str = Z_STRVAL_P(ct);
 -              popts.input.len = Z_STRLEN_P(ct);
 +              popts.input.str = ct->val;
 +              popts.input.len = ct->len;
  
 -              if (php_http_params_parse(&params, &popts TSRMLS_CC)) {
 -                      zval **cur, **arg;
 -                      char *ct_str;
 +              if (php_http_params_parse(&params, &popts)) {
 +                      zval *cur, *arg;
 +                      zend_string *ct_str;
 +                      zend_ulong index;
  
                        zend_hash_internal_pointer_reset(&params);
  
 -                      if (SUCCESS == zend_hash_get_current_data(&params, (void *) &cur)
 -                      &&      Z_TYPE_PP(cur) == IS_ARRAY
 -                      &&      HASH_KEY_IS_STRING == zend_hash_get_current_key(&params, &ct_str, NULL, 0)
 +                      if ((cur = zend_hash_get_current_data(&params))
 +                      &&      (Z_TYPE_P(cur) == IS_ARRAY)
 +                      &&      (HASH_KEY_IS_STRING == zend_hash_get_current_key(&params, &ct_str, &index))
                        ) {
 -                              if (php_http_match(ct_str, "multipart", PHP_HTTP_MATCH_WORD)) {
 +                              if (php_http_match(ct_str->val, "multipart", PHP_HTTP_MATCH_WORD)) {
                                        is_multipart = 1;
  
                                        /* get boundary */
                                        if (boundary
 -                                      &&      SUCCESS == zend_hash_find(Z_ARRVAL_PP(cur), ZEND_STRS("arguments"), (void *) &arg)
 -                                      &&      Z_TYPE_PP(arg) == IS_ARRAY
 +                                      &&      (arg = zend_hash_str_find(Z_ARRVAL_P(cur), ZEND_STRL("arguments")))
 +                                      &&      Z_TYPE_P(arg) == IS_ARRAY
                                        ) {
 -                                              zval **val;
 -                                              HashPosition pos;
 -                                              php_http_array_hashkey_t key = php_http_array_hashkey_init(0);
 +                                              zval *val;
 +                                              php_http_arrkey_t key;
  
 -                                              FOREACH_KEYVAL(pos, *arg, key, val) {
 -                                                      if (key.type == HASH_KEY_IS_STRING && !strcasecmp(key.str, "boundary")) {
 -                                                              zval *bnd = php_http_ztyp(IS_STRING, *val);
 +                                              ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(arg), key.h, key.key, val)
 +                                              {
 +                                                      if (key.key && key.key->len == lenof("boundary") && !strcasecmp(key.key->val, "boundary")) {
 +                                                              zend_string *bnd = zval_get_string(val);
  
 -                                                              if (Z_STRLEN_P(bnd)) {
 -                                                                      *boundary = estrndup(Z_STRVAL_P(bnd), Z_STRLEN_P(bnd));
 +                                                              if (bnd->len) {
 +                                                                      *boundary = estrndup(bnd->val, bnd->len);
                                                                }
 -                                                              zval_ptr_dtor(&bnd);
 +                                                              zend_string_release(bnd);
                                                        }
                                                }
 +                                              ZEND_HASH_FOREACH_END();
                                        }
                                }
                        }
                }
                zend_hash_destroy(&params);
 -              zval_ptr_dtor(&ct);
 +              zend_string_release(ct);
        }
  
        return is_multipart;
@@@ -270,44 -292,49 +270,44 @@@ void php_http_message_set_info(php_http
  
  void php_http_message_update_headers(php_http_message_t *msg)
  {
 -      zval *h;
 +      zval h;
        size_t size;
 +      zend_string *cl;
  
        if (php_http_message_body_stream(msg->body)->readfilters.head) {
                /* if a read stream filter is attached to the body the caller must also care for the headers */
 -      } else if ((h = php_http_message_header(msg, ZEND_STRL("Content-Range"), 0))) {
 +      } else if (php_http_message_header(msg, ZEND_STRL("Content-Range"))) {
                /* don't mess around with a Content-Range message */
 -              zval_ptr_dtor(&h);
        } else if ((size = php_http_message_body_size(msg->body))) {
 -              MAKE_STD_ZVAL(h);
 -              ZVAL_LONG(h, size);
 -              zend_hash_update(&msg->hdrs, "Content-Length", sizeof("Content-Length"), &h, sizeof(zval *), NULL);
 +              ZVAL_LONG(&h, size);
 +              zend_hash_str_update(&msg->hdrs, "Content-Length", lenof("Content-Length"), &h);
  
                if (msg->body->boundary) {
                        char *str;
                        size_t len;
 +                      zend_string *ct;
  
 -                      if (!(h = php_http_message_header(msg, ZEND_STRL("Content-Type"), 1))) {
 +                      if (!(ct = php_http_message_header_string(msg, ZEND_STRL("Content-Type")))) {
                                len = spprintf(&str, 0, "multipart/form-data; boundary=\"%s\"", msg->body->boundary);
 -                              MAKE_STD_ZVAL(h);
 -                              ZVAL_STRINGL(h, str, len, 0);
 -                              zend_hash_update(&msg->hdrs, "Content-Type", sizeof("Content-Type"), &h, sizeof(zval *), NULL);
 -                      } else if (!php_http_match(Z_STRVAL_P(h), "boundary=", PHP_HTTP_MATCH_WORD)) {
 -                              zval_dtor(h);
 -                              Z_STRLEN_P(h) = spprintf(&Z_STRVAL_P(h), 0, "%s; boundary=\"%s\"", Z_STRVAL_P(h), msg->body->boundary);
 -                              zend_hash_update(&msg->hdrs, "Content-Type", sizeof("Content-Type"), &h, sizeof(zval *), NULL);
 +                              ZVAL_STR(&h, php_http_cs2zs(str, len));
 +                              zend_hash_str_update(&msg->hdrs, "Content-Type", lenof("Content-Type"), &h);
 +                      } else if (!php_http_match(ct->val, "boundary=", PHP_HTTP_MATCH_WORD)) {
 +                              len = spprintf(&str, 0, "%s; boundary=\"%s\"", ct->val, msg->body->boundary);
 +                              ZVAL_STR(&h, php_http_cs2zs(str, len));
 +                              zend_hash_str_update(&msg->hdrs, "Content-Type", lenof("Content-Type"), &h);
 +                              zend_string_release(ct);
                        } else {
 -                              zval_ptr_dtor(&h);
 +                              zend_string_release(ct);
                        }
                }
 -      } else if ((h = php_http_message_header(msg, ZEND_STRL("Content-Length"), 1))) {
 -              zval *h_cpy = php_http_ztyp(IS_LONG, h);
 -
 -              zval_ptr_dtor(&h);
 -              if (Z_LVAL_P(h_cpy)) {
 +      } else if ((cl = php_http_message_header_string(msg, ZEND_STRL("Content-Length")))) {
 +              if (!zend_string_equals_literal(cl, "0")) {
                        /* body->size == 0, so get rid of old Content-Length */
 -                      zend_hash_del(&msg->hdrs, "Content-Length", sizeof("Content-Length"));
 +                      zend_hash_str_del(&msg->hdrs, ZEND_STRL("Content-Length"));
                }
 -              zval_ptr_dtor(&h_cpy);
 +              zend_string_release(cl);
        } else if (msg->type == PHP_HTTP_REQUEST) {
 -              if ((h = php_http_message_header(msg, ZEND_STRL("Transfer-Encoding"), 0))) {
 -                      zval_ptr_dtor(&h);
 -              } else {
 +              if (!php_http_message_header(msg, ZEND_STRL("Transfer-Encoding"))) {
                        /* no filter, no CR, no size, no TE, no CL */
                        if (0 <= php_http_select_str(msg->http.info.request.method, 3, "POST", "PUT", "PATCH")) {
                                /* quoting RFC7230#section-3.3.2
                                        a payload body and the method semantics do not anticipate such a
                                        body.
                                */
 -                              MAKE_STD_ZVAL(h);
 -                              ZVAL_LONG(h, 0);
 -                              zend_hash_update(&msg->hdrs, "Content-Length", sizeof("Content-Length"), &h, sizeof(zval *), NULL);
 +                              ZVAL_LONG(&h, 0);
 +                              zend_hash_str_update(&msg->hdrs, "Content-Length", lenof("Content-Length"), &h);
                        }
                }
        }
  static void message_headers(php_http_message_t *msg, php_http_buffer_t *str)
  {
        char *tmp = NULL;
 -      TSRMLS_FETCH_FROM_CTX(msg->ts);
+       size_t len = 0;
  
-       switch (msg->type) {
-               case PHP_HTTP_REQUEST:
-                       php_http_buffer_appendf(str, PHP_HTTP_INFO_REQUEST_FMT_ARGS(&msg->http, tmp, PHP_HTTP_CRLF));
-                       PTR_FREE(tmp);
-                       break;
-               case PHP_HTTP_RESPONSE:
-                       php_http_buffer_appendf(str, PHP_HTTP_INFO_RESPONSE_FMT_ARGS(&msg->http, tmp, PHP_HTTP_CRLF));
-                       PTR_FREE(tmp);
-                       break;
-               default:
-                       break;
-       }
+       php_http_info_to_string((php_http_info_t *) msg, &tmp, &len, PHP_HTTP_CRLF TSRMLS_CC);
        php_http_message_update_headers(msg);
 -      php_http_header_to_string(str, &msg->hdrs TSRMLS_CC);
 -      STR_FREE(tmp);
+       php_http_buffer_append(str, tmp, len);
 +      php_http_header_to_string(str, &msg->hdrs);
++      PTR_FREE(tmp);
  }
  
  void php_http_message_to_callback(php_http_message_t *msg, php_http_pass_callback_t cb, void *cb_arg)
@@@ -410,7 -429,9 +400,7 @@@ void php_http_message_serialize(php_htt
  
  php_http_message_t *php_http_message_reverse(php_http_message_t *msg)
  {
 -      int i, c = 0;
 -
 -      php_http_message_count(c, msg);
 +      size_t i, c = php_http_message_count(msg);
  
        if (c > 1) {
                php_http_message_t *tmp = msg, **arr;
        return msg;
  }
  
 -php_http_message_t *php_http_message_zip(php_http_message_t *one, php_http_message_t *two)
 +php_http_message_t *php_http_message_zip(php_http_message_t *dst, php_http_message_t *src)
  {
 -      php_http_message_t *dst = php_http_message_copy(one, NULL), *src = php_http_message_copy(two, NULL), *tmp_dst, *tmp_src, *ret = dst;
 +      php_http_message_t *tmp_dst, *tmp_src, *ret = dst;
  
 -      while(dst && src) {
 +      while (dst && src) {
                tmp_dst = dst->parent;
                tmp_src = src->parent;
                dst->parent = src;
@@@ -454,22 -475,23 +444,22 @@@ php_http_message_t *php_http_message_co
  {
        php_http_message_t *temp, *copy = NULL;
        php_http_info_t info;
 -      TSRMLS_FETCH_FROM_CTX(from->ts);
  
        if (from) {
                info.type = from->type;
                info.http = from->http;
  
 -              copy = temp = php_http_message_init(to, 0, php_http_message_body_copy(from->body, NULL) TSRMLS_CC);
 +              copy = temp = php_http_message_init(to, 0, php_http_message_body_copy(from->body, NULL));
                php_http_message_set_info(temp, &info);
 -              zend_hash_copy(&temp->hdrs, &from->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
 +              array_copy(&from->hdrs, &temp->hdrs);
  
                if (parents) while (from->parent) {
                        info.type = from->parent->type;
                        info.http = from->parent->http;
  
 -                      temp->parent = php_http_message_init(NULL, 0, php_http_message_body_copy(from->parent->body, NULL) TSRMLS_CC);
 +                      temp->parent = php_http_message_init(NULL, 0, php_http_message_body_copy(from->parent->body, NULL));
                        php_http_message_set_info(temp->parent, &info);
 -                      zend_hash_copy(&temp->parent->hdrs, &from->parent->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
 +                      array_copy(&from->parent->hdrs, &temp->parent->hdrs);
  
                        temp = temp->parent;
                        from = from->parent;
        return copy;
  }
  
 -php_http_message_t *php_http_message_copy(php_http_message_t *from, php_http_message_t *to)
 -{
 -      return php_http_message_copy_ex(from, to, 1);
 -}
 -
  void php_http_message_dtor(php_http_message_t *message)
  {
        if (message) {
@@@ -513,24 -540,14 +503,24 @@@ void php_http_message_free(php_http_mes
        }
  }
  
 -static zval *php_http_message_object_read_prop(zval *object, zval *member, int type PHP_HTTP_ZEND_LITERAL_DC TSRMLS_DC);
 -static void php_http_message_object_write_prop(zval *object, zval *member, zval *value PHP_HTTP_ZEND_LITERAL_DC TSRMLS_DC);
 -static HashTable *php_http_message_object_get_props(zval *object TSRMLS_DC);
 +static zend_class_entry *php_http_message_class_entry;
 +zend_class_entry *php_http_message_get_class_entry(void)
 +{
 +      return php_http_message_class_entry;
 +}
 +
 +static zval *php_http_message_object_read_prop(zval *object, zval *member, int type, void **cache_slot, zval *rv);
 +static void php_http_message_object_write_prop(zval *object, zval *member, zval *value, void **cache_slot);
  
  static zend_object_handlers php_http_message_object_handlers;
  static HashTable php_http_message_object_prophandlers;
  
 -typedef void (*php_http_message_object_prophandler_func_t)(php_http_message_object_t *o, zval *v TSRMLS_DC);
 +static void php_http_message_object_prophandler_hash_dtor(zval *pData)
 +{
 +      pefree(Z_PTR_P(pData), 1);
 +}
 +
 +typedef void (*php_http_message_object_prophandler_func_t)(php_http_message_object_t *o, zval *v);
  
  typedef struct php_http_message_object_prophandler {
        php_http_message_object_prophandler_func_t read;
  
  static ZEND_RESULT_CODE php_http_message_object_add_prophandler(const char *prop_str, size_t prop_len, php_http_message_object_prophandler_func_t read, php_http_message_object_prophandler_func_t write) {
        php_http_message_object_prophandler_t h = { read, write };
 -      return zend_hash_add(&php_http_message_object_prophandlers, prop_str, prop_len + 1, (void *) &h, sizeof(h), NULL);
 +      if (!zend_hash_str_add_mem(&php_http_message_object_prophandlers, prop_str, prop_len, (void *) &h, sizeof(h))) {
 +              return FAILURE;
 +      }
 +      return SUCCESS;
  }
 -static ZEND_RESULT_CODE php_http_message_object_get_prophandler(const char *prop_str, size_t prop_len, php_http_message_object_prophandler_t **handler) {
 -      return zend_hash_find(&php_http_message_object_prophandlers, prop_str, prop_len + 1, (void *) handler);
 +static php_http_message_object_prophandler_t *php_http_message_object_get_prophandler(zend_string *name_str) {
 +      return zend_hash_str_find_ptr(&php_http_message_object_prophandlers, name_str->val, name_str->len);
  }
 -static void php_http_message_object_prophandler_get_type(php_http_message_object_t *obj, zval *return_value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_get_type(php_http_message_object_t *obj, zval *return_value) {
        RETVAL_LONG(obj->message->type);
  }
 -static void php_http_message_object_prophandler_set_type(php_http_message_object_t *obj, zval *value TSRMLS_DC) {
 -      zval *cpy = php_http_ztyp(IS_LONG, value);
 -      php_http_message_set_type(obj->message, Z_LVAL_P(cpy));
 -      zval_ptr_dtor(&cpy);
 +static void php_http_message_object_prophandler_set_type(php_http_message_object_t *obj, zval *value) {
 +      php_http_message_set_type(obj->message, zval_get_long(value));
  }
 -static void php_http_message_object_prophandler_get_request_method(php_http_message_object_t *obj, zval *return_value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_get_request_method(php_http_message_object_t *obj, zval *return_value) {
        if (PHP_HTTP_MESSAGE_TYPE(REQUEST, obj->message) && obj->message->http.info.request.method) {
 -              RETVAL_STRING(obj->message->http.info.request.method, 1);
 +              RETVAL_STRING(obj->message->http.info.request.method);
        } else {
                RETVAL_NULL();
        }
  }
 -static void php_http_message_object_prophandler_set_request_method(php_http_message_object_t *obj, zval *value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_set_request_method(php_http_message_object_t *obj, zval *value) {
        if (PHP_HTTP_MESSAGE_TYPE(REQUEST, obj->message)) {
 -              zval *cpy = php_http_ztyp(IS_STRING, value);
 -              PTR_SET(obj->message->http.info.request.method, estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy)));
 -              zval_ptr_dtor(&cpy);
 +              zend_string *zs = zval_get_string(value);
 +              PTR_SET(obj->message->http.info.request.method, estrndup(zs->val, zs->len));
 +              zend_string_release(zs);
        }
  }
 -static void php_http_message_object_prophandler_get_request_url(php_http_message_object_t *obj, zval *return_value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_get_request_url(php_http_message_object_t *obj, zval *return_value) {
        char *url_str;
        size_t url_len;
  
        if (PHP_HTTP_MESSAGE_TYPE(REQUEST, obj->message) && obj->message->http.info.request.url && php_http_url_to_string(obj->message->http.info.request.url, &url_str, &url_len, 0)) {
 -              RETVAL_STRINGL(url_str, url_len, 0);
 +              RETVAL_STR(php_http_cs2zs(url_str, url_len));
        } else {
                RETVAL_NULL();
        }
  }
 -static void php_http_message_object_prophandler_set_request_url(php_http_message_object_t *obj, zval *value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_set_request_url(php_http_message_object_t *obj, zval *value) {
        if (PHP_HTTP_MESSAGE_TYPE(REQUEST, obj->message)) {
 -              PTR_SET(obj->message->http.info.request.url, php_http_url_from_zval(value, PHP_HTTP_URL_STDFLAGS TSRMLS_CC));
 +              PTR_SET(obj->message->http.info.request.url, php_http_url_from_zval(value, PHP_HTTP_URL_STDFLAGS));
        }
  }
 -static void php_http_message_object_prophandler_get_response_status(php_http_message_object_t *obj, zval *return_value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_get_response_status(php_http_message_object_t *obj, zval *return_value) {
        if (PHP_HTTP_MESSAGE_TYPE(RESPONSE, obj->message) && obj->message->http.info.response.status) {
 -              RETVAL_STRING(obj->message->http.info.response.status, 1);
 +              RETVAL_STRING(obj->message->http.info.response.status);
        } else {
                RETVAL_NULL();
        }
  }
 -static void php_http_message_object_prophandler_set_response_status(php_http_message_object_t *obj, zval *value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_set_response_status(php_http_message_object_t *obj, zval *value) {
        if (PHP_HTTP_MESSAGE_TYPE(RESPONSE, obj->message)) {
 -              zval *cpy = php_http_ztyp(IS_STRING, value);
 -              PTR_SET(obj->message->http.info.response.status, estrndup(Z_STRVAL_P(cpy), Z_STRLEN_P(cpy)));
 -              zval_ptr_dtor(&cpy);
 +              zend_string *zs = zval_get_string(value);
 +              PTR_SET(obj->message->http.info.response.status, estrndup(zs->val, zs->len));
 +              zend_string_release(zs);
        }
  }
 -static void php_http_message_object_prophandler_get_response_code(php_http_message_object_t *obj, zval *return_value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_get_response_code(php_http_message_object_t *obj, zval *return_value) {
        if (PHP_HTTP_MESSAGE_TYPE(RESPONSE, obj->message)) {
                RETVAL_LONG(obj->message->http.info.response.code);
        } else {
                RETVAL_NULL();
        }
  }
 -static void php_http_message_object_prophandler_set_response_code(php_http_message_object_t *obj, zval *value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_set_response_code(php_http_message_object_t *obj, zval *value) {
        if (PHP_HTTP_MESSAGE_TYPE(RESPONSE, obj->message)) {
 -              zval *cpy = php_http_ztyp(IS_LONG, value);
 -              obj->message->http.info.response.code = Z_LVAL_P(cpy);
 +              obj->message->http.info.response.code = zval_get_long(value);
                PTR_SET(obj->message->http.info.response.status, estrdup(php_http_env_get_response_status_for_code(obj->message->http.info.response.code)));
 -              zval_ptr_dtor(&cpy);
        }
  }
 -static void php_http_message_object_prophandler_get_http_version(php_http_message_object_t *obj, zval *return_value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_get_http_version(php_http_message_object_t *obj, zval *return_value) {
        char *version_str;
        size_t version_len;
  
 -      php_http_version_to_string(&obj->message->http.version, &version_str, &version_len, NULL, NULL TSRMLS_CC);
 -      RETVAL_STRINGL(version_str, version_len, 0);
 +      php_http_version_to_string(&obj->message->http.version, &version_str, &version_len, NULL, NULL);
 +      RETVAL_STR(php_http_cs2zs(version_str, version_len));
  }
 -static void php_http_message_object_prophandler_set_http_version(php_http_message_object_t *obj, zval *value TSRMLS_DC) {
 -      zval *cpy = php_http_ztyp(IS_STRING, value);
 -      php_http_version_parse(&obj->message->http.version, Z_STRVAL_P(cpy) TSRMLS_CC);
 -      zval_ptr_dtor(&cpy);
 +static void php_http_message_object_prophandler_set_http_version(php_http_message_object_t *obj, zval *value) {
 +      zend_string *zs = zval_get_string(value);
 +      php_http_version_parse(&obj->message->http.version, zs->val);
 +      zend_string_release(zs);
  }
 -static void php_http_message_object_prophandler_get_headers(php_http_message_object_t *obj, zval *return_value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_get_headers(php_http_message_object_t *obj, zval *return_value ) {
        array_init(return_value);
 -      zend_hash_copy(Z_ARRVAL_P(return_value), &obj->message->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
 +      array_copy(&obj->message->hdrs, Z_ARRVAL_P(return_value));
  }
 -static void php_http_message_object_prophandler_set_headers(php_http_message_object_t *obj, zval *value TSRMLS_DC) {
 -      zval *cpy = php_http_ztyp(IS_ARRAY, value);
 +static void php_http_message_object_prophandler_set_headers(php_http_message_object_t *obj, zval *value) {
 +      HashTable *headers;
 +      zval *orig_value = value;
 +
 +      if (Z_TYPE_P(value) != IS_ARRAY && Z_TYPE_P(value) != IS_OBJECT) {
 +              convert_to_array_ex(value);
 +      }
 +      headers = HASH_OF(value);
  
        zend_hash_clean(&obj->message->hdrs);
 -      zend_hash_copy(&obj->message->hdrs, Z_ARRVAL_P(cpy), (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
 -      zval_ptr_dtor(&cpy);
 +      array_copy(headers, &obj->message->hdrs);
 +
 +      if (orig_value != value) {
 +              zval_ptr_dtor(value);
 +      }
  }
 -static void php_http_message_object_prophandler_get_body(php_http_message_object_t *obj, zval *return_value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_get_body(php_http_message_object_t *obj, zval *return_value) {
        if (obj->body) {
 -              RETVAL_OBJVAL(obj->body->zv, 1);
 +              RETVAL_OBJECT(&obj->body->zo, 1);
        } else {
                RETVAL_NULL();
        }
  }
 -static void php_http_message_object_prophandler_set_body(php_http_message_object_t *obj, zval *value TSRMLS_DC) {
 -      php_http_message_object_set_body(obj, value TSRMLS_CC);
 +static void php_http_message_object_prophandler_set_body(php_http_message_object_t *obj, zval *value) {
 +      php_http_message_object_set_body(obj, value);
  }
 -static void php_http_message_object_prophandler_get_parent_message(php_http_message_object_t *obj, zval *return_value TSRMLS_DC) {
 +static void php_http_message_object_prophandler_get_parent_message(php_http_message_object_t *obj, zval *return_value) {
        if (obj->message->parent) {
 -              RETVAL_OBJVAL(obj->parent->zv, 1);
 +              RETVAL_OBJECT(&obj->parent->zo, 1);
        } else {
                RETVAL_NULL();
        }
  }
 -static void php_http_message_object_prophandler_set_parent_message(php_http_message_object_t *obj, zval *value TSRMLS_DC) {
 -      if (Z_TYPE_P(value) == IS_OBJECT && instanceof_function(Z_OBJCE_P(value), php_http_message_class_entry TSRMLS_CC)) {
 -              php_http_message_object_t *parent_obj = zend_object_store_get_object(value TSRMLS_CC);
 +static void php_http_message_object_prophandler_set_parent_message(php_http_message_object_t *obj, zval *value) {
 +      if (Z_TYPE_P(value) == IS_OBJECT && instanceof_function(Z_OBJCE_P(value), php_http_message_class_entry)) {
 +              php_http_message_object_t *parent_obj = PHP_HTTP_OBJ(NULL, value);
  
                if (obj->message->parent) {
 -                      zend_objects_store_del_ref_by_handle(obj->parent->zv.handle TSRMLS_CC);
 +                      zend_object_release(&obj->parent->zo);
                }
 -              Z_OBJ_ADDREF_P(value);
 +              Z_ADDREF_P(value);
                obj->parent = parent_obj;
                obj->message->parent = parent_obj->message;
        }
  #define PHP_HTTP_MESSAGE_OBJECT_INIT(obj) \
        do { \
                if (!obj->message) { \
 -                      obj->message = php_http_message_init(NULL, 0, NULL TSRMLS_CC); \
 +                      obj->message = php_http_message_init(NULL, 0, NULL); \
                } \
        } while(0)
  
  
 -void php_http_message_object_reverse(zval *this_ptr, zval *return_value TSRMLS_DC)
 +void php_http_message_object_reverse(zval *zmsg, zval *return_value)
  {
 -      int i = 0;
 -      php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      size_t i;
 +      php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, zmsg);
  
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
        /* count */
 -      php_http_message_count(i, obj->message);
 +      i = php_http_message_count(obj->message);
  
        if (i > 1) {
                php_http_message_object_t **objects;
                objects[0]->parent = NULL;
  
                /* add ref, because we previously have not been a parent message */
 -              Z_OBJ_ADDREF_P(getThis());
 -              RETVAL_OBJVAL(objects[last]->zv, 0);
 +              Z_ADDREF_P(zmsg);
 +              /* no addref, because we've been a parent message previously */
 +              RETVAL_OBJECT(&objects[last]->zo, 0);
  
                efree(objects);
        } else {
 -              RETURN_ZVAL(getThis(), 1, 0);
 +              RETURN_ZVAL(zmsg, 1, 0);
        }
  }
  
 -void php_http_message_object_prepend(zval *this_ptr, zval *prepend, zend_bool top TSRMLS_DC)
 +void php_http_message_object_prepend(zval *this_ptr, zval *prepend, zend_bool top)
  {
 -      zval m;
        php_http_message_t *save_parent_msg = NULL;
 -      php_http_message_object_t *save_parent_obj = NULL, *obj = zend_object_store_get_object(this_ptr TSRMLS_CC);
 -      php_http_message_object_t *prepend_obj = zend_object_store_get_object(prepend TSRMLS_CC);
 -
 -      INIT_PZVAL(&m);
 -      m.type = IS_OBJECT;
 +      php_http_message_object_t *save_parent_obj = NULL, *obj = PHP_HTTP_OBJ(NULL, this_ptr);
 +      php_http_message_object_t *prepend_obj = PHP_HTTP_OBJ(NULL, prepend);
  
        if (!top) {
                save_parent_obj = obj->parent;
        obj->message->parent = prepend_obj->message;
  
        /* add ref */
 -      zend_objects_store_add_ref(prepend TSRMLS_CC);
 +      Z_ADDREF_P(prepend);
  
        if (!top) {
                prepend_obj->parent = save_parent_obj;
        }
  }
  
 -ZEND_RESULT_CODE php_http_message_object_set_body(php_http_message_object_t *msg_obj, zval *zbody TSRMLS_DC)
 +ZEND_RESULT_CODE php_http_message_object_set_body(php_http_message_object_t *msg_obj, zval *zbody)
  {
 -      zval *tmp = NULL;
        php_stream *s;
 -      zend_object_value ov;
 +      zend_string *body_str;
        php_http_message_body_t *body;
        php_http_message_body_object_t *body_obj;
  
        switch (Z_TYPE_P(zbody)) {
                case IS_RESOURCE:
 -                      php_stream_from_zval_no_verify(s, &zbody);
 +                      php_stream_from_zval_no_verify(s, zbody);
                        if (!s) {
                                php_http_throw(unexpected_val, "The stream is not a valid resource", NULL);
                                return FAILURE;
  
                        is_resource:
  
 -                      body = php_http_message_body_init(NULL, s TSRMLS_CC);
 -                      if (SUCCESS != php_http_new(&ov, php_http_message_body_class_entry, (php_http_new_t) php_http_message_body_object_new_ex, NULL, body, NULL TSRMLS_CC)) {
 +                      body = php_http_message_body_init(NULL, s);
 +                      if (!(body_obj = php_http_message_body_object_new_ex(php_http_get_message_body_class_entry(), body))) {
                                php_http_message_body_free(&body);
                                return FAILURE;
                        }
 -                      MAKE_STD_ZVAL(tmp);
 -                      ZVAL_OBJVAL(tmp, ov, 0);
 -                      zbody = tmp;
                        break;
  
                case IS_OBJECT:
 -                      if (instanceof_function(Z_OBJCE_P(zbody), php_http_message_body_class_entry TSRMLS_CC)) {
 -                              Z_OBJ_ADDREF_P(zbody);
 +                      if (instanceof_function(Z_OBJCE_P(zbody), php_http_get_message_body_class_entry())) {
 +                              Z_ADDREF_P(zbody);
 +                              body_obj = PHP_HTTP_OBJ(NULL, zbody);
                                break;
                        }
                        /* no break */
  
                default:
 -                      tmp = php_http_ztyp(IS_STRING, zbody);
 +                      body_str = zval_get_string(zbody);
                        s = php_stream_temp_new();
 -                      php_stream_write(s, Z_STRVAL_P(tmp), Z_STRLEN_P(tmp));
 -                      zval_ptr_dtor(&tmp);
 -                      tmp = NULL;
 +                      php_stream_write(s, body_str->val, body_str->len);
 +                      zend_string_release(body_str);
                        goto is_resource;
  
        }
  
 -      body_obj = zend_object_store_get_object(zbody TSRMLS_CC);
        if (!body_obj->body) {
 -              body_obj->body = php_http_message_body_init(NULL, NULL TSRMLS_CC);
 +              body_obj->body = php_http_message_body_init(NULL, NULL);
        }
        if (msg_obj->body) {
 -              zend_objects_store_del_ref_by_handle(msg_obj->body->zv.handle TSRMLS_CC);
 +              zend_object_release(&msg_obj->body->zo);
        }
        if (msg_obj->message) {
                php_http_message_body_free(&msg_obj->message->body);
 -              msg_obj->message->body = php_http_message_body_init(&body_obj->body, NULL TSRMLS_CC);
 +              msg_obj->message->body = body_obj->body;
        } else {
 -              msg_obj->message = php_http_message_init(NULL, 0, php_http_message_body_init(&body_obj->body, NULL TSRMLS_CC) TSRMLS_CC);
 +              msg_obj->message = php_http_message_init(NULL, 0, body_obj->body);
        }
 +      php_http_message_body_addref(body_obj->body);
        msg_obj->body = body_obj;
  
 -      if (tmp) {
 -              FREE_ZVAL(tmp);
 -      }
        return SUCCESS;
  }
  
  ZEND_RESULT_CODE php_http_message_object_init_body_object(php_http_message_object_t *obj)
  {
 -      TSRMLS_FETCH_FROM_CTX(obj->message->ts);
 -
        php_http_message_body_addref(obj->message->body);
 -      return php_http_new(NULL, php_http_message_body_class_entry, (php_http_new_t) php_http_message_body_object_new_ex, NULL, obj->message->body, (void *) &obj->body TSRMLS_CC);
 +      return php_http_new((void *) &obj->body, php_http_get_message_body_class_entry(), (php_http_new_t) php_http_message_body_object_new_ex, NULL, obj->message->body);
  }
  
 -zend_object_value php_http_message_object_new(zend_class_entry *ce TSRMLS_DC)
 +zend_object *php_http_message_object_new(zend_class_entry *ce)
  {
 -      return php_http_message_object_new_ex(ce, NULL, NULL TSRMLS_CC);
 +      return &php_http_message_object_new_ex(ce, NULL)->zo;
  }
  
 -zend_object_value php_http_message_object_new_ex(zend_class_entry *ce, php_http_message_t *msg, php_http_message_object_t **ptr TSRMLS_DC)
 +php_http_message_object_t *php_http_message_object_new_ex(zend_class_entry *ce, php_http_message_t *msg)
  {
        php_http_message_object_t *o;
  
 -      o = ecalloc(1, sizeof(php_http_message_object_t));
 -      zend_object_std_init((zend_object *) o, ce TSRMLS_CC);
 -      object_properties_init((zend_object *) o, ce);
 -
 -      if (ptr) {
 -              *ptr = o;
 -      }
 +      o = ecalloc(1, sizeof(*o) + zend_object_properties_size(ce));
 +      zend_object_std_init(&o->zo, ce);
 +      object_properties_init(&o->zo, ce);
  
        if (msg) {
                o->message = msg;
                if (msg->parent) {
 -                      php_http_message_object_new_ex(ce, msg->parent, &o->parent TSRMLS_CC);
 +                      o->parent = php_http_message_object_new_ex(ce, msg->parent);
                }
 -              php_http_message_body_object_new_ex(php_http_message_body_class_entry, php_http_message_body_init(&msg->body, NULL TSRMLS_CC), &o->body TSRMLS_CC);
 +              o->body = php_http_message_body_object_new_ex(php_http_get_message_body_class_entry(), php_http_message_body_init(&msg->body, NULL));
        }
  
 -      o->zv.handle = zend_objects_store_put((zend_object *) o, NULL, php_http_message_object_free, NULL TSRMLS_CC);
 -      o->zv.handlers = &php_http_message_object_handlers;
 +      o->zo.handlers = &php_http_message_object_handlers;
  
 -      return o->zv;
 +      return o;
  }
  
 -zend_object_value php_http_message_object_clone(zval *this_ptr TSRMLS_DC)
 +zend_object *php_http_message_object_clone(zval *this_ptr)
  {
 -      zend_object_value new_ov;
        php_http_message_object_t *new_obj = NULL;
 -      php_http_message_object_t *old_obj = zend_object_store_get_object(this_ptr TSRMLS_CC);
 +      php_http_message_object_t *old_obj = PHP_HTTP_OBJ(NULL, this_ptr);
  
 -      new_ov = php_http_message_object_new_ex(old_obj->zo.ce, php_http_message_copy(old_obj->message, NULL), &new_obj TSRMLS_CC);
 -      zend_objects_clone_members(&new_obj->zo, new_ov, &old_obj->zo, Z_OBJ_HANDLE_P(this_ptr) TSRMLS_CC);
 +      new_obj = php_http_message_object_new_ex(old_obj->zo.ce, php_http_message_copy(old_obj->message, NULL));
 +      zend_objects_clone_members(&new_obj->zo, &old_obj->zo);
  
 -      return new_ov;
 +      return &new_obj->zo;
  }
  
 -void php_http_message_object_free(void *object TSRMLS_DC)
 +void php_http_message_object_free(zend_object *object)
  {
 -      php_http_message_object_t *o = (php_http_message_object_t *) object;
 +      php_http_message_object_t *o = PHP_HTTP_OBJ(object, NULL);
  
 -      if (o->iterator) {
 +      PTR_FREE(o->gc);
 +
 +      if (!Z_ISUNDEF(o->iterator)) {
                zval_ptr_dtor(&o->iterator);
 -              o->iterator = NULL;
 +              ZVAL_UNDEF(&o->iterator);
        }
        if (o->message) {
                /* do NOT free recursivly */
                o->message = NULL;
        }
        if (o->parent) {
 -              zend_objects_store_del_ref_by_handle(o->parent->zv.handle TSRMLS_CC);
 +              zend_object_release(&o->parent->zo);
                o->parent = NULL;
        }
        if (o->body) {
 -              zend_objects_store_del_ref_by_handle(o->body->zv.handle TSRMLS_CC);
 +              zend_object_release(&o->body->zo);
                o->body = NULL;
        }
 -      zend_object_std_dtor((zend_object *) o TSRMLS_CC);
 -      efree(o);
 +      zend_object_std_dtor(object);
  }
  
 -static zval *php_http_message_object_read_prop(zval *object, zval *member, int type PHP_HTTP_ZEND_LITERAL_DC TSRMLS_DC)
 +static zval *php_http_message_object_read_prop(zval *object, zval *member, int type, void **cache_slot, zval *tmp)
  {
 -      php_http_message_object_t *obj = zend_object_store_get_object(object TSRMLS_CC);
 -      php_http_message_object_prophandler_t *handler;
 -      zval *return_value, *copy = php_http_ztyp(IS_STRING, member);
 +      zval *return_value;
 +      zend_string *member_name = zval_get_string(member);
 +      php_http_message_object_prophandler_t *handler = php_http_message_object_get_prophandler(member_name);
  
 -      PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
 +      if (!handler || type == BP_VAR_R || type == BP_VAR_IS) {
 +              return_value = zend_get_std_object_handlers()->read_property(object, member, type, cache_slot, tmp);
  
 -      if (SUCCESS == php_http_message_object_get_prophandler(Z_STRVAL_P(copy), Z_STRLEN_P(copy), &handler)) {
 -              ALLOC_ZVAL(return_value);
 -              Z_SET_REFCOUNT_P(return_value, 0);
 -              Z_UNSET_ISREF_P(return_value);
 +              if (handler) {
 +                      php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, object);
  
 -              if (type == BP_VAR_R) {
 -                      handler->read(obj, return_value TSRMLS_CC);
 -              } else {
 -                      php_property_proxy_t *proxy = php_property_proxy_init(object, Z_STRVAL_P(copy), Z_STRLEN_P(copy) TSRMLS_CC);
 -                      RETVAL_OBJVAL(php_property_proxy_object_new_ex(php_property_proxy_get_class_entry(), proxy, NULL TSRMLS_CC), 0);
 +                      PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
 +                      handler->read(obj, tmp);
 +
 +                      zval_ptr_dtor(return_value);
 +                      ZVAL_COPY_VALUE(return_value, tmp);
                }
 +              zend_string_release(member_name);
 +              return return_value;
        } else {
 -              return_value = zend_get_std_object_handlers()->read_property(object, member, type PHP_HTTP_ZEND_LITERAL_CC TSRMLS_CC);
 -      }
 +              php_property_proxy_t *proxy;
 +              php_property_proxy_object_t *proxy_obj;
  
 -      zval_ptr_dtor(&copy);
 +              proxy = php_property_proxy_init(object, member_name);
 +              proxy_obj = php_property_proxy_object_new_ex(NULL, proxy);
  
 -      return return_value;
 +              ZVAL_OBJ(tmp, &proxy_obj->zo);
 +              zend_string_release(member_name);
 +              return tmp;
 +      }
  }
  
 -static void php_http_message_object_write_prop(zval *object, zval *member, zval *value PHP_HTTP_ZEND_LITERAL_DC TSRMLS_DC)
 +static void php_http_message_object_write_prop(zval *object, zval *member, zval *value, void **cache_slot)
  {
 -      php_http_message_object_t *obj = zend_object_store_get_object(object TSRMLS_CC);
 +      php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, object);
        php_http_message_object_prophandler_t *handler;
 -      zval *copy = php_http_ztyp(IS_STRING, member);
 +      zend_string *member_name = zval_get_string(member);
  
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -      if (SUCCESS == php_http_message_object_get_prophandler(Z_STRVAL_P(copy), Z_STRLEN_P(copy), &handler)) {
 -              handler->write(obj, value TSRMLS_CC);
 +      if ((handler = php_http_message_object_get_prophandler(member_name))) {
 +              handler->write(obj, value);
        } else {
 -              zend_get_std_object_handlers()->write_property(object, member, value PHP_HTTP_ZEND_LITERAL_CC TSRMLS_CC);
 +              zend_get_std_object_handlers()->write_property(object, member, value, cache_slot);
        }
  
 -      zval_ptr_dtor(&copy);
 +      zend_string_release(member_name);
  }
  
 -static HashTable *php_http_message_object_get_props(zval *object TSRMLS_DC)
 +static HashTable *php_http_message_object_get_debug_info(zval *object, int *is_temp)
  {
 -      zval *headers;
 -      php_http_message_object_t *obj = zend_object_store_get_object(object TSRMLS_CC);
 -      HashTable *props = zend_get_std_object_handlers()->get_properties(object TSRMLS_CC);
 -      zval array, *parent, *body;
 +      zval tmp;
 +      php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, object);
 +      HashTable *props = zend_get_std_object_handlers()->get_properties(object);
        char *ver_str, *url_str = NULL;
        size_t ver_len, url_len = 0;
  
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
 -      INIT_PZVAL_ARRAY(&array, props);
 +      *is_temp = 0;
  
 -#define ASSOC_PROP(ptype, n, val) \
 +#define UPDATE_PROP(name_str, action_with_tmp) \
        do { \
                zend_property_info *pi; \
 -              if (SUCCESS == zend_hash_find(&obj->zo.ce->properties_info, n, sizeof(n), (void *) &pi)) { \
 -                      add_assoc_ ##ptype## _ex(&array, pi->name, pi->name_length + 1, val); \
 -              } \
 -      } while(0) \
 -
 -#define ASSOC_STRING(name, val) ASSOC_STRINGL(name, val, strlen(val))
 -#define ASSOC_STRINGL(name, val, len) ASSOC_STRINGL_EX(name, val, len, 1)
 -#define ASSOC_STRINGL_EX(n, val, len, cpy) \
 -      do { \
 -              zend_property_info *pi; \
 -              if (SUCCESS == zend_hash_find(&obj->zo.ce->properties_info, n, sizeof(n), (void *) &pi)) { \
 -                      add_assoc_stringl_ex(&array, pi->name, pi->name_length + 1, val, len, cpy); \
 +              if ((pi = zend_hash_str_find_ptr(&obj->zo.ce->properties_info, name_str, lenof(name_str)))) { \
 +                      action_with_tmp; \
 +                      zend_hash_update_ind(props, pi->name, &tmp); \
                } \
        } while(0)
  
 -      ASSOC_PROP(long, "type", obj->message->type);
 +      UPDATE_PROP("type", ZVAL_LONG(&tmp, obj->message->type));
 +
        ver_len = spprintf(&ver_str, 0, "%u.%u", obj->message->http.version.major, obj->message->http.version.minor);
 -      ASSOC_STRINGL_EX("httpVersion", ver_str, ver_len, 0);
 +      UPDATE_PROP("httpVersion", ZVAL_STR(&tmp, php_http_cs2zs(ver_str, ver_len)));
  
        switch (obj->message->type) {
                case PHP_HTTP_REQUEST:
 -                      ASSOC_PROP(long, "responseCode", 0);
 -                      ASSOC_STRINGL("responseStatus", "", 0);
 -                      ASSOC_STRING("requestMethod", STR_PTR(obj->message->http.info.request.method));
 +                      UPDATE_PROP("responseCode", ZVAL_LONG(&tmp, 0));
 +                      UPDATE_PROP("responseStatus", ZVAL_EMPTY_STRING(&tmp));
 +                      UPDATE_PROP("requestMethod", ZVAL_STRING(&tmp, STR_PTR(obj->message->http.info.request.method)));
                        if (obj->message->http.info.request.url) {
                                php_http_url_to_string(obj->message->http.info.request.url, &url_str, &url_len, 0);
 -                              ASSOC_STRINGL_EX("requestUrl", url_str, url_len, 0);
 +                              UPDATE_PROP("requestUrl", ZVAL_STR(&tmp, php_http_cs2zs(url_str, url_len)));
                        } else {
 -                              ASSOC_STRINGL("requestUrl", "", 0);
 +                              UPDATE_PROP("requestUrl", ZVAL_EMPTY_STRING(&tmp));
                        }
  
                        break;
  
                case PHP_HTTP_RESPONSE:
 -                      ASSOC_PROP(long, "responseCode", obj->message->http.info.response.code);
 -                      ASSOC_STRING("responseStatus", STR_PTR(obj->message->http.info.response.status));
 -                      ASSOC_STRINGL("requestMethod", "", 0);
 -                      ASSOC_STRINGL("requestUrl", "", 0);
 +                      UPDATE_PROP("responseCode", ZVAL_LONG(&tmp, obj->message->http.info.response.code));
 +                      UPDATE_PROP("responseStatus", ZVAL_STRING(&tmp, STR_PTR(obj->message->http.info.response.status)));
 +                      UPDATE_PROP("requestMethod", ZVAL_EMPTY_STRING(&tmp));
 +                      UPDATE_PROP("requestUrl", ZVAL_EMPTY_STRING(&tmp));
                        break;
  
                case PHP_HTTP_NONE:
                default:
 -                      ASSOC_PROP(long, "responseCode", 0);
 -                      ASSOC_STRINGL("responseStatus", "", 0);
 -                      ASSOC_STRINGL("requestMethod", "", 0);
 -                      ASSOC_STRINGL("requestUrl", "", 0);
 +                      UPDATE_PROP("responseCode", ZVAL_LONG(&tmp, 0));
 +                      UPDATE_PROP("responseStatus", ZVAL_EMPTY_STRING(&tmp));
 +                      UPDATE_PROP("requestMethod", ZVAL_EMPTY_STRING(&tmp));
 +                      UPDATE_PROP("requestUrl", ZVAL_EMPTY_STRING(&tmp));
                        break;
        }
  
 -      MAKE_STD_ZVAL(headers);
 -      array_init(headers);
 -      zend_hash_copy(Z_ARRVAL_P(headers), &obj->message->hdrs, (copy_ctor_func_t) zval_add_ref, NULL, sizeof(zval *));
 -      ASSOC_PROP(zval, "headers", headers);
 +      UPDATE_PROP("headers",
 +                      array_init(&tmp);
 +                      array_copy(&obj->message->hdrs, Z_ARRVAL(tmp));
 +      );
 +
 +      UPDATE_PROP("body",
 +                      if (obj->body) {
 +                              ZVAL_OBJECT(&tmp, &obj->body->zo, 1);
 +                      } else {
 +                              ZVAL_NULL(&tmp);
 +                      }
 +      );
 +
 +      UPDATE_PROP("parentMessage",
 +                      if (obj->message->parent) {
 +                              ZVAL_OBJECT(&tmp, &obj->parent->zo, 1);
 +                      } else {
 +                              ZVAL_NULL(&tmp);
 +                      }
 +      );
 +
 +      return props;
 +}
 +
 +static HashTable *php_http_message_object_get_gc(zval *object, zval **table, int *n)
 +{
 +      php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, object);
 +      HashTable *props = Z_OBJPROP_P(object);
 +      uint32_t count = 2 + zend_hash_num_elements(props);
 +      zval *val;
 +
 +      *n = 0;
 +      *table = obj->gc = erealloc(obj->gc, count * sizeof(zval));
  
 -      MAKE_STD_ZVAL(body);
        if (obj->body) {
 -              ZVAL_OBJVAL(body, obj->body->zv, 1);
 -      } else {
 -              ZVAL_NULL(body);
 +              ZVAL_OBJ(&obj->gc[(*n)++], &obj->body->zo);
 +      }
 +      if (obj->parent) {
 +              ZVAL_OBJ(&obj->gc[(*n)++], &obj->parent->zo);
        }
 -      ASSOC_PROP(zval, "body", body);
  
 -      MAKE_STD_ZVAL(parent);
 -      if (obj->message->parent) {
 -              ZVAL_OBJVAL(parent, obj->parent->zv, 1);
 -      } else {
 -              ZVAL_NULL(parent);
 +      ZEND_HASH_FOREACH_VAL(props, val)
 +      {
 +              ZVAL_COPY_VALUE(&obj->gc[(*n)++], val);
        }
 -      ASSOC_PROP(zval, "parentMessage", parent);
 +      ZEND_HASH_FOREACH_END();
  
 -      return props;
 +      return NULL;
  }
  
  ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage___construct, 0, 0, 0)
@@@ -1045,22 -1049,22 +1035,22 @@@ static PHP_METHOD(HttpMessage, __constr
        zend_bool greedy = 1;
        zval *zmessage = NULL;
        php_http_message_t *msg = NULL;
 -      php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
        zend_error_handling zeh;
  
 -      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|z!b", &zmessage, &greedy), invalid_arg, return);
 +      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|z!b", &zmessage, &greedy), invalid_arg, return);
  
 -      zend_replace_error_handling(EH_THROW, php_http_exception_bad_message_class_entry, &zeh TSRMLS_CC);
 +      zend_replace_error_handling(EH_THROW, php_http_get_exception_bad_message_class_entry(), &zeh);
        if (zmessage && Z_TYPE_P(zmessage) == IS_RESOURCE) {
                php_stream *s;
                php_http_message_parser_t p;
                zend_error_handling zeh;
  
 -              zend_replace_error_handling(EH_THROW, php_http_exception_unexpected_val_class_entry, &zeh TSRMLS_CC);
 -              php_stream_from_zval(s, &zmessage);
 -              zend_restore_error_handling(&zeh TSRMLS_CC);
 +              zend_replace_error_handling(EH_THROW, php_http_get_exception_unexpected_val_class_entry(), &zeh);
 +              php_stream_from_zval(s, zmessage);
 +              zend_restore_error_handling(&zeh);
  
 -              if (s && php_http_message_parser_init(&p TSRMLS_CC)) {
 +              if (s && php_http_message_parser_init(&p)) {
                        unsigned flags = (greedy ? PHP_HTTP_MESSAGE_PARSER_GREEDY : 0);
                        php_http_buffer_t buf;
  
                        php_http_throw(bad_message, "Empty message received from stream", NULL);
                }
        } else if (zmessage) {
 -              zmessage = php_http_ztyp(IS_STRING, zmessage);
 -              msg = php_http_message_parse(NULL, Z_STRVAL_P(zmessage), Z_STRLEN_P(zmessage), greedy TSRMLS_CC);
 +              zend_string *zs_msg = zval_get_string(zmessage);
 +
 +              msg = php_http_message_parse(NULL, zs_msg->val, zs_msg->len, greedy);
  
                if (!msg && !EG(exception)) {
 -                      php_http_throw(bad_message, "Could not parse message: %.*s", MIN(25, Z_STRLEN_P(zmessage)), Z_STRVAL_P(zmessage));
 +                      php_http_throw(bad_message, "Could not parse message: %.*s", MIN(25, zs_msg->len), zs_msg->val);
                }
 -              zval_ptr_dtor(&zmessage);
 +              zend_string_release(zs_msg);
        }
  
        if (msg) {
                php_http_message_dtor(obj->message);
                obj->message = msg;
                if (obj->message->parent) {
 -                      php_http_message_object_new_ex(Z_OBJCE_P(getThis()), obj->message->parent, &obj->parent TSRMLS_CC);
 +                      obj->parent = php_http_message_object_new_ex(obj->zo.ce, obj->message->parent);
                }
        }
 -      zend_restore_error_handling(&zeh TSRMLS_CC);
 +      zend_restore_error_handling(&zeh);
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  }
  
@@@ -1107,7 -1110,8 +1097,7 @@@ static PHP_METHOD(HttpMessage, getBody
  
        php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 -
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
        if (!obj->body) {
  
        }
        if (obj->body) {
 -              RETVAL_OBJVAL(obj->body->zv, 1);
 +              RETVAL_OBJECT(&obj->body->zo, 1);
        }
  }
  
@@@ -1126,11 -1130,11 +1116,11 @@@ static PHP_METHOD(HttpMessage, setBody
  {
        zval *zbody;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &zbody, php_http_message_body_class_entry)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &zbody, php_http_get_message_body_class_entry())) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
 -              php_http_message_object_prophandler_set_body(obj, zbody TSRMLS_CC);
 +              php_http_message_object_prophandler_set_body(obj, zbody);
        }
        RETVAL_ZVAL(getThis(), 1, 0);
  }
@@@ -1142,9 -1146,9 +1132,9 @@@ static PHP_METHOD(HttpMessage, addBody
  {
        zval *new_body;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O", &new_body, php_http_message_body_class_entry)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 -              php_http_message_body_object_t *new_obj = zend_object_store_get_object(new_body TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O", &new_body, php_http_get_message_body_class_entry())) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
 +              php_http_message_body_object_t *new_obj = PHP_HTTP_OBJ(NULL, new_body);
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
                php_http_message_body_to_callback(new_obj->body, (php_http_pass_callback_t) php_http_message_body_append, obj->message->body, 0, 0);
@@@ -1159,36 -1163,39 +1149,36 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, getHeader)
  {
        char *header_str;
 -      int header_len;
 +      size_t header_len;
        zend_class_entry *header_ce = NULL;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|C!", &header_str, &header_len, &header_ce)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "s|C!", &header_str, &header_len, &header_ce)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
                zval *header;
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -              if ((header = php_http_message_header(obj->message, header_str, header_len, 0))) {
 +              if ((header = php_http_message_header(obj->message, header_str, header_len))) {
                        if (!header_ce) {
 -                              RETURN_ZVAL(header, 1, 1);
 -                      } else if (instanceof_function(header_ce, php_http_header_class_entry TSRMLS_CC)) {
 +                              RETURN_ZVAL(header, 1, 0);
 +                      } else if (instanceof_function(header_ce, php_http_header_get_class_entry())) {
                                php_http_object_method_t cb;
 -                              zval *header_name, **argv[2];
 -
 -                              MAKE_STD_ZVAL(header_name);
 -                              ZVAL_STRINGL(header_name, header_str, header_len, 1);
 +                              zval argv[2];
  
 -                              argv[0] = &header_name;
 -                              argv[1] = &header;
 +                              ZVAL_STRINGL(&argv[0], header_str, header_len);
 +                              ZVAL_COPY(&argv[1], header);
  
                                object_init_ex(return_value, header_ce);
 -                              php_http_object_method_init(&cb, return_value, ZEND_STRL("__construct") TSRMLS_CC);
 -                              php_http_object_method_call(&cb, return_value, NULL, 2, argv TSRMLS_CC);
 +                              php_http_object_method_init(&cb, return_value, ZEND_STRL("__construct"));
 +                              php_http_object_method_call(&cb, return_value, NULL, 2, argv);
                                php_http_object_method_dtor(&cb);
  
 -                              zval_ptr_dtor(&header_name);
 -                              zval_ptr_dtor(&header);
 +                              zval_ptr_dtor(&argv[0]);
 +                              zval_ptr_dtor(&argv[1]);
  
                                return;
                        } else {
 -                              php_error_docref(NULL TSRMLS_CC, E_WARNING, "Class '%s' is not as descendant of http\\Header", header_ce->name);
 +                              php_error_docref(NULL, E_WARNING, "Class '%s' is not as descendant of http\\Header", header_ce->name->val);
                        }
                }
        }
@@@ -1200,7 -1207,7 +1190,7 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, getHeaders)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
@@@ -1217,19 -1224,19 +1207,19 @@@ static PHP_METHOD(HttpMessage, setHeade
  {
        zval *zvalue = NULL;
        char *name_str;
 -      int name_len;
 +      size_t name_len;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|z!", &name_str, &name_len, &zvalue)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "s|z!", &name_str, &name_len, &zvalue)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
                char *name = php_http_pretty_key(estrndup(name_str, name_len), name_len, 1, 1);
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
                if (!zvalue) {
 -                      zend_symtable_del(&obj->message->hdrs, name, name_len + 1);
 +                      zend_symtable_str_del(&obj->message->hdrs, name, name_len);
                } else {
 -                      Z_ADDREF_P(zvalue);
 -                      zend_symtable_update(&obj->message->hdrs, name, name_len + 1, &zvalue, sizeof(void *), NULL);
 +                      Z_TRY_ADDREF_P(zvalue);
 +                      zend_symtable_str_update(&obj->message->hdrs, name, name_len, zvalue);
                }
                efree(name);
        }
@@@ -1243,8 -1250,8 +1233,8 @@@ static PHP_METHOD(HttpMessage, setHeade
  {
        zval *new_headers = NULL;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a/!", &new_headers)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "a/!", &new_headers)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
        RETVAL_ZVAL(getThis(), 1, 0);
  }
  
 -static inline void php_http_message_object_add_header(php_http_message_object_t *obj, const char *name_str, size_t name_len, zval *zvalue TSRMLS_DC)
 +static inline void php_http_message_object_add_header(php_http_message_object_t *obj, const char *name_str, size_t name_len, zval *zvalue)
  {
        char *name = php_http_pretty_key(estrndup(name_str, name_len), name_len, 1, 1);
 -      zval *header, *cpy;
 +      zend_string *hstr, *vstr;
 +      zval *header, tmp;
  
        if (Z_TYPE_P(zvalue) == IS_NULL) {
                return;
        }
  
 -      cpy = php_http_header_value_to_string(zvalue TSRMLS_CC);
 +      vstr = php_http_header_value_to_string(zvalue);
  
        if ((name_len != lenof("Set-Cookie") && strcmp(name, "Set-Cookie"))
 -      &&      (header = php_http_message_header(obj->message, name, name_len, 1))) {
 -              zval *tmp;
 +      &&      (hstr = php_http_message_header_string(obj->message, name, name_len))) {
                char *hdr_str;
 -              size_t hdr_len = spprintf(&hdr_str, 0, "%s, %s", Z_STRVAL_P(header), Z_STRVAL_P(cpy));
 -
 -              MAKE_STD_ZVAL(tmp);
 -              ZVAL_STRINGL(tmp, hdr_str, hdr_len, 0);
 -              zend_symtable_update(&obj->message->hdrs, name, name_len + 1, &tmp, sizeof(void *), NULL);
 -              zval_ptr_dtor(&header);
 -              zval_ptr_dtor(&cpy);
 -      } else if ((header = php_http_message_header(obj->message, name, name_len, 0))) {
 +              size_t hdr_len = spprintf(&hdr_str, 0, "%s, %s", hstr->val, vstr->val);
 +
 +              ZVAL_STR(&tmp, php_http_cs2zs(hdr_str, hdr_len));
 +              zend_symtable_str_update(&obj->message->hdrs, name, name_len, &tmp);
 +              zend_string_release(hstr);
 +              zend_string_release(vstr);
 +      } else if ((header = php_http_message_header(obj->message, name, name_len))) {
                convert_to_array(header);
 -              zend_hash_next_index_insert(Z_ARRVAL_P(header), &cpy, sizeof(void *), NULL);
 -              zval_ptr_dtor(&header);
 +              ZVAL_STR(&tmp, vstr);
 +              zend_hash_next_index_insert(Z_ARRVAL_P(header), &tmp);
        } else {
 -              zend_symtable_update(&obj->message->hdrs, name, name_len + 1, &cpy, sizeof(void *), NULL);
 +              ZVAL_STR(&tmp, vstr);
 +              zend_symtable_str_update(&obj->message->hdrs, name, name_len, &tmp);
        }
        efree(name);
  }
@@@ -1296,14 -1303,14 +1286,14 @@@ static PHP_METHOD(HttpMessage, addHeade
  {
        zval *zvalue;
        char *name_str;
 -      int name_len;
 +      size_t name_len;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "sz", &name_str, &name_len, &zvalue)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "sz", &name_str, &name_len, &zvalue)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -              php_http_message_object_add_header(obj, name_str, name_len, zvalue TSRMLS_CC);
 +              php_http_message_object_add_header(obj, name_str, name_len, zvalue);
        }
        RETVAL_ZVAL(getThis(), 1, 0);
  }
@@@ -1317,22 -1324,21 +1307,22 @@@ static PHP_METHOD(HttpMessage, addHeade
        zval *new_headers;
        zend_bool append = 0;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "a|b", &new_headers, &append)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "a|b", &new_headers, &append)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
                if (append) {
 -                      HashPosition pos;
 -                      php_http_array_hashkey_t key = php_http_array_hashkey_init(0);
 -                      zval **val;
 -
 -                      FOREACH_KEYVAL(pos, new_headers, key, val) {
 -                              php_http_array_hashkey_stringify(&key);
 -                              php_http_message_object_add_header(obj, key.str, key.len-1, *val TSRMLS_CC);
 -                              php_http_array_hashkey_stringfree(&key);
 +                      php_http_arrkey_t key = {0};
 +                      zval *val;
 +
 +                      ZEND_HASH_FOREACH_KEY_VAL(Z_ARRVAL_P(new_headers), key.h, key.key, val)
 +                      {
 +                              php_http_arrkey_stringify(&key, NULL);
 +                              php_http_message_object_add_header(obj, key.key->val, key.key->len, val);
 +                              php_http_arrkey_dtor(&key);
                        }
 +                      ZEND_HASH_FOREACH_END();
                } else {
                        array_join(Z_ARRVAL_P(new_headers), &obj->message->hdrs, 0, ARRAY_JOIN_PRETTIFY|ARRAY_JOIN_STRONLY);
                }
@@@ -1345,7 -1351,7 +1335,7 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, getType)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
@@@ -1358,10 -1364,10 +1348,10 @@@ ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage_s
  ZEND_END_ARG_INFO();
  static PHP_METHOD(HttpMessage, setType)
  {
 -      long type;
 +      zend_long type;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l", &type)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "l", &type)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
@@@ -1375,27 -1381,15 +1365,14 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, getInfo)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
-               char *str, *tmp = NULL;
-               size_t len;
++              char *str = NULL;
+               size_t len = 0;
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
-               switch (obj->message->type) {
-                       case PHP_HTTP_REQUEST:
-                               len = spprintf(&str, 0, PHP_HTTP_INFO_REQUEST_FMT_ARGS(&obj->message->http, tmp, ""));
-                               PTR_FREE(tmp);
-                               break;
-                       case PHP_HTTP_RESPONSE:
-                               len = spprintf(&str, 0, PHP_HTTP_INFO_RESPONSE_FMT_ARGS(&obj->message->http, tmp, ""));
-                               PTR_FREE(tmp);
-                               break;
-                       default:
-                               RETURN_NULL();
-                               break;
-               }
++              php_http_info_to_string((php_http_info_t *) obj->message, &str, &len, "");
  
 -              php_http_info_to_string((php_http_info_t *) obj->message, &Z_STRVAL_P(return_value), &len, "" TSRMLS_CC);
 -              Z_STRLEN_P(return_value) = len;
 -              Z_TYPE_P(return_value) = IS_STRING;
 -              return;
 +              RETVAL_STR(php_http_cs2zs(str, len));
        }
  }
  
@@@ -1405,16 -1399,16 +1382,16 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, setInfo)
  {
        char *str;
 -      int len;
 +      size_t len;
        php_http_message_object_t *obj;
        php_http_info_t inf;
  
 -      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &str, &len), invalid_arg, return);
 +      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "s", &str, &len), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -      if (!php_http_info_parse(&inf, str TSRMLS_CC)) {
 +      if (!php_http_info_parse(&inf, str)) {
                php_http_throw(bad_header, "Could not parse message info '%s'", str);
                return;
        }
@@@ -1432,12 -1426,12 +1409,12 @@@ static PHP_METHOD(HttpMessage, getHttpV
        if (SUCCESS == zend_parse_parameters_none()) {
                char *str;
                size_t len;
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -              php_http_version_to_string(&obj->message->http.version, &str, &len, NULL, NULL TSRMLS_CC);
 -              RETURN_STRINGL(str, len, 0);
 +              php_http_version_to_string(&obj->message->http.version, &str, &len, NULL, NULL);
 +              RETURN_STR(php_http_cs2zs(str, len));
        }
  }
  
@@@ -1447,16 -1441,16 +1424,16 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, setHttpVersion)
  {
        char *v_str;
 -      int v_len;
 +      size_t v_len;
        php_http_version_t version;
        php_http_message_object_t *obj;
  
 -      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &v_str, &v_len), invalid_arg, return);
 +      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "s", &v_str, &v_len), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -      php_http_expect(php_http_version_parse(&version, v_str TSRMLS_CC), unexpected_val, return);
 +      php_http_expect(php_http_version_parse(&version, v_str), unexpected_val, return);
  
        obj->message->http.version = version;
  
@@@ -1468,12 -1462,12 +1445,12 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, getResponseCode)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
                if (obj->message->type != PHP_HTTP_RESPONSE) {
 -                      php_error_docref(NULL TSRMLS_CC, E_WARNING, "http\\Message is not if type response");
 +                      php_error_docref(NULL, E_WARNING, "http\\Message is not if type response");
                        RETURN_FALSE;
                }
  
@@@ -1487,13 -1481,14 +1464,13 @@@ ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage_s
  ZEND_END_ARG_INFO();
  static PHP_METHOD(HttpMessage, setResponseCode)
  {
 -      long code;
 +      zend_long code;
        zend_bool strict = 1;
        php_http_message_object_t *obj;
  
 -      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|b", &code, &strict), invalid_arg, return);
 -
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "l|b", &code, &strict), invalid_arg, return);
  
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
        if (obj->message->type != PHP_HTTP_RESPONSE) {
@@@ -1517,16 -1512,16 +1494,16 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, getResponseStatus)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
                if (obj->message->type != PHP_HTTP_RESPONSE) {
 -                      php_error_docref(NULL TSRMLS_CC, E_WARNING, "http\\Message is not of type response");
 +                      php_error_docref(NULL, E_WARNING, "http\\Message is not of type response");
                }
  
                if (obj->message->http.info.response.status) {
 -                      RETURN_STRING(obj->message->http.info.response.status, 1);
 +                      RETURN_STRING(obj->message->http.info.response.status);
                } else {
                        RETURN_EMPTY_STRING();
                }
@@@ -1539,12 -1534,12 +1516,12 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, setResponseStatus)
  {
        char *status;
 -      int status_len;
 +      size_t status_len;
        php_http_message_object_t *obj;
  
 -      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &status, &status_len), invalid_arg, return);
 +      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "s", &status, &status_len), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
  
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
@@@ -1561,17 -1556,17 +1538,17 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, getRequestMethod)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
                if (obj->message->type != PHP_HTTP_REQUEST) {
 -                      php_error_docref(NULL TSRMLS_CC, E_WARNING, "http\\Message is not of type request");
 +                      php_error_docref(NULL, E_WARNING, "http\\Message is not of type request");
                        RETURN_FALSE;
                }
  
                if (obj->message->http.info.request.method) {
 -                      RETURN_STRING(obj->message->http.info.request.method, 1);
 +                      RETURN_STRING(obj->message->http.info.request.method);
                } else {
                        RETURN_EMPTY_STRING();
                }
@@@ -1584,12 -1579,12 +1561,12 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, setRequestMethod)
  {
        char *method;
 -      int method_len;
 +      size_t method_len;
        php_http_message_object_t *obj;
  
 -      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &method, &method_len), invalid_arg, return);
 +      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "s", &method, &method_len), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
  
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
@@@ -1612,12 -1607,12 +1589,12 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, getRequestUrl)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
                if (obj->message->type != PHP_HTTP_REQUEST) {
 -                      php_error_docref(NULL TSRMLS_CC, E_WARNING, "http\\Message is not of type request");
 +                      php_error_docref(NULL, E_WARNING, "http\\Message is not of type request");
                        RETURN_FALSE;
                }
  
                        size_t url_len;
  
                        php_http_url_to_string(obj->message->http.info.request.url, &url_str, &url_len, 0);
 -                      RETURN_STRINGL(url_str, url_len, 0);
 +                      RETURN_STR(php_http_cs2zs(url_str, url_len));
                } else {
                        RETURN_EMPTY_STRING();
                }
@@@ -1643,9 -1638,9 +1620,9 @@@ static PHP_METHOD(HttpMessage, setReque
        php_http_message_object_t *obj;
        zend_error_handling zeh;
  
 -      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "z", &zurl), invalid_arg, return);
 +      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "z", &zurl), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
  
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
                return;
        }
  
 -      zend_replace_error_handling(EH_THROW, php_http_exception_bad_url_class_entry, &zeh TSRMLS_CC);
 -      url = php_http_url_from_zval(zurl, PHP_HTTP_URL_STDFLAGS TSRMLS_CC);
 -      zend_restore_error_handling(&zeh TSRMLS_CC);
 +      zend_replace_error_handling(EH_THROW, php_http_get_exception_bad_url_class_entry(), &zeh);
 +      url = php_http_url_from_zval(zurl, PHP_HTTP_URL_STDFLAGS);
 +      zend_restore_error_handling(&zeh);
  
        if (url && php_http_url_is_empty(url)) {
                php_http_url_free(&url);
@@@ -1676,7 -1671,8 +1653,7 @@@ static PHP_METHOD(HttpMessage, getParen
  
        php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 -
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
        if (!obj->message->parent) {
                return;
        }
  
 -      RETVAL_OBJVAL(obj->parent->zv, 1);
 +      RETVAL_OBJECT(&obj->parent->zo, 1);
  }
  
  ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage___toString, 0, 0, 0)
@@@ -1696,8 -1692,8 +1673,8 @@@ static PHP_METHOD(HttpMessage, toString
  {
        zend_bool include_parent = 0;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|b", &include_parent)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|b", &include_parent)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
                char *string;
                size_t length;
  
                        php_http_message_to_string(obj->message, &string, &length);
                }
                if (string) {
 -                      RETURN_STRINGL(string, length, 0);
 +                      RETURN_STR(php_http_cs2zs(string, length));
                }
        }
        RETURN_EMPTY_STRING();
  }
  
 -#ifdef ZTS
 -static size_t write_to_stream(void *s, const char *str, size_t len)
 -{
 -      TSRMLS_FETCH();
 -      return php_stream_write(s, str, len);
 -}
 -#else
 -#     define write_to_stream (php_http_pass_callback_t)_php_stream_write
 -#endif
 -
  ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage_toStream, 0, 0, 1)
        ZEND_ARG_INFO(0, stream)
  ZEND_END_ARG_INFO();
@@@ -1722,14 -1728,14 +1699,14 @@@ static PHP_METHOD(HttpMessage, toStream
  {
        zval *zstream;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r", &zstream)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "r", &zstream)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
                php_stream *s;
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -              php_stream_from_zval(s, &zstream);
 -              php_http_message_to_callback(obj->message, write_to_stream, s);
 +              php_stream_from_zval(s, zstream);
 +              php_http_message_to_callback(obj->message, (php_http_pass_callback_t) _php_stream_write, s);
        }
  }
  
@@@ -1740,17 -1746,20 +1717,17 @@@ static PHP_METHOD(HttpMessage, toCallba
  {
        php_http_pass_fcall_arg_t fcd;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "f", &fcd.fci, &fcd.fcc)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "f", &fcd.fci, &fcd.fcc)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -              fcd.fcz = getThis();
 -              Z_ADDREF_P(fcd.fcz);
 -              TSRMLS_SET_CTX(fcd.ts);
 -
 +              ZVAL_COPY(&fcd.fcz, getThis());
                php_http_message_to_callback(obj->message, php_http_pass_fcall_callback, &fcd);
                zend_fcall_info_args_clear(&fcd.fci, 1);
 -
                zval_ptr_dtor(&fcd.fcz);
 -              RETURN_ZVAL(getThis(), 1, 0);
 +
 +              RETURN_ZVAL(&fcd.fcz, 1, 0);
        }
  }
  
@@@ -1759,14 -1768,14 +1736,14 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, serialize)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
                char *string;
                size_t length;
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
                php_http_message_serialize(obj->message, &string, &length);
 -              RETURN_STRINGL(string, length, 0);
 +              RETURN_STR(php_http_cs2zs(string, length));
        }
        RETURN_EMPTY_STRING();
  }
@@@ -1776,23 -1785,22 +1753,23 @@@ ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage_u
  ZEND_END_ARG_INFO();
  static PHP_METHOD(HttpMessage, unserialize)
  {
 -      int length;
 +      size_t length;
        char *serialized;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s", &serialized, &length)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "s", &serialized, &length)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
                php_http_message_t *msg;
  
                if (obj->message) {
 +                      /* do not free recursively */
                        php_http_message_dtor(obj->message);
                        efree(obj->message);
                }
 -              if ((msg = php_http_message_parse(NULL, serialized, (size_t) length, 1 TSRMLS_CC))) {
 +              if ((msg = php_http_message_parse(NULL, serialized, length, 1))) {
                        obj->message = msg;
                } else {
 -                      obj->message = php_http_message_init(NULL, 0, NULL TSRMLS_CC);
 -                      php_error_docref(NULL TSRMLS_CC, E_ERROR, "Could not unserialize http\\Message");
 +                      obj->message = php_http_message_init(NULL, 0, NULL);
 +                      php_error_docref(NULL, E_ERROR, "Could not unserialize http\\Message");
                }
        }
  }
@@@ -1801,18 -1809,15 +1778,18 @@@ ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage_d
  ZEND_END_ARG_INFO();
  static PHP_METHOD(HttpMessage, detach)
  {
 -      php_http_message_object_t *obj;
 +      php_http_message_object_t *obj, *new_obj;
 +      php_http_message_t *msg_cpy;
  
        php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 -
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -      RETVAL_OBJVAL(php_http_message_object_new_ex(obj->zo.ce, php_http_message_copy_ex(obj->message, NULL, 0), NULL TSRMLS_CC), 0);
 +      msg_cpy = php_http_message_copy_ex(obj->message, NULL, 0);
 +      new_obj = php_http_message_object_new_ex(obj->zo.ce, msg_cpy);
 +
 +      RETVAL_OBJ(&new_obj->zo);
  }
  
  ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage_prepend, 0, 0, 1)
@@@ -1826,11 -1831,11 +1803,11 @@@ static PHP_METHOD(HttpMessage, prepend
        php_http_message_t *msg[2];
        php_http_message_object_t *obj, *prepend_obj;
  
 -      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "O|b", &prepend, php_http_message_class_entry, &top), invalid_arg, return);
 +      php_http_expect(SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "O|b", &prepend, php_http_message_class_entry, &top), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
 -      prepend_obj = zend_object_store_get_object(prepend TSRMLS_CC);
 +      prepend_obj = PHP_HTTP_OBJ(NULL, prepend);
        PHP_HTTP_MESSAGE_OBJECT_INIT(prepend_obj);
  
        /* safety check */
                }
        }
  
 -      php_http_message_object_prepend(getThis(), prepend, top TSRMLS_CC);
 +      php_http_message_object_prepend(getThis(), prepend, top);
        RETURN_ZVAL(getThis(), 1, 0);
  }
  
@@@ -1853,7 -1858,7 +1830,7 @@@ static PHP_METHOD(HttpMessage, reverse
  {
        php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
  
 -      php_http_message_object_reverse(getThis(), return_value TSRMLS_CC);
 +      php_http_message_object_reverse(getThis(), return_value);
  }
  
  ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage_isMultipart, 0, 0, 0)
@@@ -1863,22 -1868,17 +1840,22 @@@ static PHP_METHOD(HttpMessage, isMultip
  {
        zval *zboundary = NULL;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|z", &zboundary)) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|z!", &zboundary)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
                char *boundary = NULL;
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -              RETVAL_BOOL(php_http_message_is_multipart(obj->message, zboundary ? &boundary : NULL));
 +              if (php_http_message_is_multipart(obj->message, zboundary ? &boundary : NULL)) {
 +                      RETVAL_TRUE;
 +              } else {
 +                      RETVAL_FALSE;
 +              }
  
                if (zboundary && boundary) {
 +                      ZVAL_DEREF(zboundary);
                        zval_dtor(zboundary);
 -                      ZVAL_STRING(zboundary, boundary, 0);
 +                      ZVAL_STR(zboundary, php_http_cs2zs(boundary, strlen(boundary)));
                }
        }
  }
@@@ -1893,7 -1893,8 +1870,7 @@@ static PHP_METHOD(HttpMessage, splitMul
  
        php_http_expect(SUCCESS == zend_parse_parameters_none(), invalid_arg, return);
  
 -      obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 -
 +      obj = PHP_HTTP_OBJ(NULL, getThis());
        PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
        if (!php_http_message_is_multipart(obj->message, &boundary)) {
  
        PTR_FREE(boundary);
  
 -      RETURN_OBJVAL(php_http_message_object_new_ex(php_http_message_class_entry, msg, NULL TSRMLS_CC), 0);
 +      RETURN_OBJ(&php_http_message_object_new_ex(obj->zo.ce, msg)->zo);
  }
  
  ZEND_BEGIN_ARG_INFO_EX(ai_HttpMessage_count, 0, 0, 0)
  ZEND_END_ARG_INFO();
  static PHP_METHOD(HttpMessage, count)
  {
 -      long count_mode = -1;
 +      zend_long count_mode = -1;
  
 -      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &count_mode)) {
 -              long i = 0;
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +      if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS(), "|l", &count_mode)) {
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
                PHP_HTTP_MESSAGE_OBJECT_INIT(obj);
  
 -              php_http_message_count(i, obj->message);
 -              RETURN_LONG(i);
 +              RETURN_LONG(php_http_message_count(obj->message));
        }
  }
  
@@@ -1929,12 -1932,13 +1906,12 @@@ static PHP_METHOD(HttpMessage, rewind
  {
        if (SUCCESS == zend_parse_parameters_none()) {
                zval *zobj = getThis();
 -              php_http_message_object_t *obj = zend_object_store_get_object(zobj TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
 -              if (obj->iterator) {
 +              if (!Z_ISUNDEF(obj->iterator)) {
                        zval_ptr_dtor(&obj->iterator);
                }
 -              Z_ADDREF_P(zobj);
 -              obj->iterator = zobj;
 +              ZVAL_COPY(&obj->iterator, zobj);
        }
  }
  
@@@ -1943,9 -1947,9 +1920,9 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, valid)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
 -              RETURN_BOOL(obj->iterator != NULL);
 +              RETURN_BOOL(!Z_ISUNDEF(obj->iterator));
        }
  }
  
@@@ -1954,20 -1958,19 +1931,20 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, next)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
 +
 +              if (!Z_ISUNDEF(obj->iterator)) {
 +                      php_http_message_object_t *itr = PHP_HTTP_OBJ(NULL, &obj->iterator);
  
 -              if (obj->iterator) {
 -                      php_http_message_object_t *itr = zend_object_store_get_object(obj->iterator TSRMLS_CC);
 +                      if (itr->parent) {
 +                              zval tmp;
  
 -                      if (itr && itr->parent) {
 -                              zval *old = obj->iterator;
 -                              MAKE_STD_ZVAL(obj->iterator);
 -                              ZVAL_OBJVAL(obj->iterator, itr->parent->zv, 1);
 -                              zval_ptr_dtor(&old);
 +                              ZVAL_OBJECT(&tmp, &itr->parent->zo, 1);
 +                              zval_ptr_dtor(&obj->iterator);
 +                              obj->iterator = tmp;
                        } else {
                                zval_ptr_dtor(&obj->iterator);
 -                              obj->iterator = NULL;
 +                              ZVAL_UNDEF(&obj->iterator);
                        }
                }
        }
@@@ -1978,9 -1981,9 +1955,9 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, key)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
 -              RETURN_LONG(obj->iterator ? obj->iterator->value.obj.handle:0);
 +              RETURN_LONG(Z_ISUNDEF(obj->iterator) ? 0 : Z_OBJ_HANDLE(obj->iterator));
        }
  }
  
@@@ -1989,10 -1992,10 +1966,10 @@@ ZEND_END_ARG_INFO()
  static PHP_METHOD(HttpMessage, current)
  {
        if (SUCCESS == zend_parse_parameters_none()) {
 -              php_http_message_object_t *obj = zend_object_store_get_object(getThis() TSRMLS_CC);
 +              php_http_message_object_t *obj = PHP_HTTP_OBJ(NULL, getThis());
  
 -              if (obj->iterator) {
 -                      RETURN_ZVAL(obj->iterator, 1, 0);
 +              if (!Z_ISUNDEF(obj->iterator)) {
 +                      RETURN_ZVAL(&obj->iterator, 1, 0);
                }
        }
  }
@@@ -2053,48 -2056,47 +2030,48 @@@ static zend_function_entry php_http_mes
        EMPTY_FUNCTION_ENTRY
  };
  
 -zend_class_entry *php_http_message_class_entry;
 -
  PHP_MINIT_FUNCTION(http_message)
  {
        zend_class_entry ce = {0};
  
        INIT_NS_CLASS_ENTRY(ce, "http", "Message", php_http_message_methods);
 -      php_http_message_class_entry = zend_register_internal_class(&ce TSRMLS_CC);
 +      php_http_message_class_entry = zend_register_internal_class(&ce);
        php_http_message_class_entry->create_object = php_http_message_object_new;
        memcpy(&php_http_message_object_handlers, zend_get_std_object_handlers(), sizeof(zend_object_handlers));
 +      php_http_message_object_handlers.offset = XtOffsetOf(php_http_message_object_t, zo);
        php_http_message_object_handlers.clone_obj = php_http_message_object_clone;
 +      php_http_message_object_handlers.free_obj = php_http_message_object_free;
        php_http_message_object_handlers.read_property = php_http_message_object_read_prop;
        php_http_message_object_handlers.write_property = php_http_message_object_write_prop;
 -      php_http_message_object_handlers.get_properties = php_http_message_object_get_props;
 +      php_http_message_object_handlers.get_debug_info = php_http_message_object_get_debug_info;
        php_http_message_object_handlers.get_property_ptr_ptr = NULL;
 +      php_http_message_object_handlers.get_gc = php_http_message_object_get_gc;
  
 -      zend_class_implements(php_http_message_class_entry TSRMLS_CC, 3, spl_ce_Countable, zend_ce_serializable, zend_ce_iterator);
 +      zend_class_implements(php_http_message_class_entry, 3, spl_ce_Countable, zend_ce_serializable, zend_ce_iterator);
  
 -      zend_hash_init(&php_http_message_object_prophandlers, 9, NULL, NULL, 1);
 -      zend_declare_property_long(php_http_message_class_entry, ZEND_STRL("type"), PHP_HTTP_NONE, ZEND_ACC_PROTECTED TSRMLS_CC);
 +      zend_hash_init(&php_http_message_object_prophandlers, 9, NULL, php_http_message_object_prophandler_hash_dtor, 1);
 +      zend_declare_property_long(php_http_message_class_entry, ZEND_STRL("type"), PHP_HTTP_NONE, ZEND_ACC_PROTECTED);
        php_http_message_object_add_prophandler(ZEND_STRL("type"), php_http_message_object_prophandler_get_type, php_http_message_object_prophandler_set_type);
 -      zend_declare_property_null(php_http_message_class_entry, ZEND_STRL("body"), ZEND_ACC_PROTECTED TSRMLS_CC);
 +      zend_declare_property_null(php_http_message_class_entry, ZEND_STRL("body"), ZEND_ACC_PROTECTED);
        php_http_message_object_add_prophandler(ZEND_STRL("body"), php_http_message_object_prophandler_get_body, php_http_message_object_prophandler_set_body);
 -      zend_declare_property_string(php_http_message_class_entry, ZEND_STRL("requestMethod"), "", ZEND_ACC_PROTECTED TSRMLS_CC);
 +      zend_declare_property_string(php_http_message_class_entry, ZEND_STRL("requestMethod"), "", ZEND_ACC_PROTECTED);
        php_http_message_object_add_prophandler(ZEND_STRL("requestMethod"), php_http_message_object_prophandler_get_request_method, php_http_message_object_prophandler_set_request_method);
 -      zend_declare_property_string(php_http_message_class_entry, ZEND_STRL("requestUrl"), "", ZEND_ACC_PROTECTED TSRMLS_CC);
 +      zend_declare_property_string(php_http_message_class_entry, ZEND_STRL("requestUrl"), "", ZEND_ACC_PROTECTED);
        php_http_message_object_add_prophandler(ZEND_STRL("requestUrl"), php_http_message_object_prophandler_get_request_url, php_http_message_object_prophandler_set_request_url);
 -      zend_declare_property_string(php_http_message_class_entry, ZEND_STRL("responseStatus"), "", ZEND_ACC_PROTECTED TSRMLS_CC);
 +      zend_declare_property_string(php_http_message_class_entry, ZEND_STRL("responseStatus"), "", ZEND_ACC_PROTECTED);
        php_http_message_object_add_prophandler(ZEND_STRL("responseStatus"), php_http_message_object_prophandler_get_response_status, php_http_message_object_prophandler_set_response_status);
 -      zend_declare_property_long(php_http_message_class_entry, ZEND_STRL("responseCode"), 0, ZEND_ACC_PROTECTED TSRMLS_CC);
 +      zend_declare_property_long(php_http_message_class_entry, ZEND_STRL("responseCode"), 0, ZEND_ACC_PROTECTED);
        php_http_message_object_add_prophandler(ZEND_STRL("responseCode"), php_http_message_object_prophandler_get_response_code, php_http_message_object_prophandler_set_response_code);
 -      zend_declare_property_null(php_http_message_class_entry, ZEND_STRL("httpVersion"), ZEND_ACC_PROTECTED TSRMLS_CC);
 +      zend_declare_property_null(php_http_message_class_entry, ZEND_STRL("httpVersion"), ZEND_ACC_PROTECTED);
        php_http_message_object_add_prophandler(ZEND_STRL("httpVersion"), php_http_message_object_prophandler_get_http_version, php_http_message_object_prophandler_set_http_version);
 -      zend_declare_property_null(php_http_message_class_entry, ZEND_STRL("headers"), ZEND_ACC_PROTECTED TSRMLS_CC);
 +      zend_declare_property_null(php_http_message_class_entry, ZEND_STRL("headers"), ZEND_ACC_PROTECTED);
        php_http_message_object_add_prophandler(ZEND_STRL("headers"), php_http_message_object_prophandler_get_headers, php_http_message_object_prophandler_set_headers);
 -      zend_declare_property_null(php_http_message_class_entry, ZEND_STRL("parentMessage"), ZEND_ACC_PROTECTED TSRMLS_CC);
 +      zend_declare_property_null(php_http_message_class_entry, ZEND_STRL("parentMessage"), ZEND_ACC_PROTECTED);
        php_http_message_object_add_prophandler(ZEND_STRL("parentMessage"), php_http_message_object_prophandler_get_parent_message, php_http_message_object_prophandler_set_parent_message);
  
 -      zend_declare_class_constant_long(php_http_message_class_entry, ZEND_STRL("TYPE_NONE"), PHP_HTTP_NONE TSRMLS_CC);
 -      zend_declare_class_constant_long(php_http_message_class_entry, ZEND_STRL("TYPE_REQUEST"), PHP_HTTP_REQUEST TSRMLS_CC);
 -      zend_declare_class_constant_long(php_http_message_class_entry, ZEND_STRL("TYPE_RESPONSE"), PHP_HTTP_RESPONSE TSRMLS_CC);
 +      zend_declare_class_constant_long(php_http_message_class_entry, ZEND_STRL("TYPE_NONE"), PHP_HTTP_NONE);
 +      zend_declare_class_constant_long(php_http_message_class_entry, ZEND_STRL("TYPE_REQUEST"), PHP_HTTP_REQUEST);
 +      zend_declare_class_constant_long(php_http_message_class_entry, ZEND_STRL("TYPE_RESPONSE"), PHP_HTTP_RESPONSE);
  
        return SUCCESS;
  }
diff --combined src/php_http_version.c
index 7f7d34245384f000376d2ba6f1725dac3131c466,2cba01e3615ae773eecdec6ca42fe44d1b4d6b72..043b4b33ef4a4d0e5a11b0feb258355bac358381
@@@ -12,7 -12,7 +12,7 @@@
  
  #include "php_http_api.h"
  
 -php_http_version_t *php_http_version_init(php_http_version_t *v, unsigned major, unsigned minor TSRMLS_DC)
 +php_http_version_t *php_http_version_init(php_http_version_t *v, unsigned major, unsigned minor)
  {
        if (!v) {
                v = emalloc(sizeof(*v));
@@@ -24,7 -24,7 +24,7 @@@
        return v;
  }
  
 -php_http_version_t *php_http_version_parse(php_http_version_t *v, const char *str TSRMLS_DC)
 +php_http_version_t *php_http_version_parse(php_http_version_t *v, const char *str)
  {
        long major, minor;
        char separator = 0;
@@@ -46,7 -46,7 +46,7 @@@
                        separator = *ptr++;
                        switch (separator) {
                        default:
 -                              php_error_docref(NULL TSRMLS_CC, E_NOTICE, "Non-standard version separator '%c' in HTTP protocol version '%s'", separator, ptr - 2);
 +                              php_error_docref(NULL, E_NOTICE, "Non-standard version separator '%c' in HTTP protocol version '%s'", separator, ptr - 2);
                                /* no break */
                        case '.':
                        case ',':
                                }
                        }
                        if (minor >= 0 && minor <= 9) {
 -                              return php_http_version_init(v, major, minor TSRMLS_CC);
 +                              return php_http_version_init(v, major, minor);
                        }
                }
        }
  
        error:
 -      php_error_docref(NULL TSRMLS_CC, E_WARNING, "Could not parse HTTP protocol version '%s'", str);
 +      php_error_docref(NULL, E_WARNING, "Could not parse HTTP protocol version '%s'", str);
        return NULL;
  }
  
 -void php_http_version_to_string(php_http_version_t *v, char **str, size_t *len, const char *pre, const char *post TSRMLS_DC)
 +void php_http_version_to_string(php_http_version_t *v, char **str, size_t *len, const char *pre, const char *post)
  {
-       *len = spprintf(str, 0, "%s%u.%u%s", pre ? pre : "", v->major, v->minor, post ? post : "");
+       /* different semantics for different versions */
+       if (v->major == 2) {
+               *len = spprintf(str, 0, "%s2%s", STR_PTR(pre), STR_PTR(post));
+       } else  {
+               *len = spprintf(str, 0, "%s%u.%u%s", STR_PTR(pre), v->major, v->minor, STR_PTR(post));
+       }
  }
  
  void php_http_version_dtor(php_http_version_t *v)