X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http.h;h=c2e880f3712b2ba65444ddd4ab4626cb3d3682dd;hb=e5e656c7f4a22c11763c6519b899523734e93015;hp=a3d6bd85688a4ab00bef18622ed670921308db4e;hpb=cd5137b3e7cb8fe55a32b1de626127e786a86d0d;p=m6w6%2Fext-http diff --git a/php_http.h b/php_http.h index a3d6bd8..c2e880f 100644 --- a/php_http.h +++ b/php_http.h @@ -138,6 +138,17 @@ ZEND_BEGIN_MODULE_GLOBALS(http) #endif } request; +#ifdef HTTP_HAVE_PERSISTENT_HANDLES + struct _http_globals_persistent { + struct _http_globals_persistent_handles { + struct _http_globals_persistent_handles_ident { + ulong h; + char *s; + size_t l; + } ident; + } handles; + } persistent; +#endif #ifdef ZEND_ENGINE_2 zend_bool only_exceptions; #endif @@ -206,6 +217,7 @@ PHP_FUNCTION(http_match_request_header); # ifdef HTTP_HAVE_PERSISTENT_HANDLES PHP_FUNCTION(http_persistent_handles_count); PHP_FUNCTION(http_persistent_handles_clean); +PHP_FUNCTION(http_persistent_handles_ident); # endif PHP_FUNCTION(http_get); PHP_FUNCTION(http_head);