Diff for /embedaddon/php/sapi/cli/php_http_parser.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/05/29 12:34:35 version 1.1.1.2, 2013/07/22 01:32:13
Line 32  extern "C" { Line 32  extern "C" {
 # include "win32/php_stdint.h"  # include "win32/php_stdint.h"
 # include "config.w32.h"  # include "config.w32.h"
 #else  #else
# include <stdint.h># include "php_config.h"
 # ifdef HAVE_STDINT_H
 #  include <stdint.h>
 # endif
 #endif  #endif
   
 /* Compile with -DPHP_HTTP_PARSER_STRICT=0 to make less checks, but run  /* Compile with -DPHP_HTTP_PARSER_STRICT=0 to make less checks, but run
Line 77  enum php_http_method Line 80  enum php_http_method
   , PHP_HTTP_HEAD    , PHP_HTTP_HEAD
   , PHP_HTTP_POST    , PHP_HTTP_POST
   , PHP_HTTP_PUT    , PHP_HTTP_PUT
     , PHP_HTTP_PATCH
   /* pathological */    /* pathological */
   , PHP_HTTP_CONNECT    , PHP_HTTP_CONNECT
   , PHP_HTTP_OPTIONS    , PHP_HTTP_OPTIONS
Line 99  enum php_http_method Line 103  enum php_http_method
   , PHP_HTTP_NOTIFY    , PHP_HTTP_NOTIFY
   , PHP_HTTP_SUBSCRIBE    , PHP_HTTP_SUBSCRIBE
   , PHP_HTTP_UNSUBSCRIBE    , PHP_HTTP_UNSUBSCRIBE
     /* unknown, not implemented */
     , PHP_HTTP_NOT_IMPLEMENTED
   };    };
   
   

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>