X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_functions.c;h=d9cefaf87b9cf2e61550d625bfb007d12c414079;hp=88aefb47ae33ec54521a645c3f08d27c467a65ab;hb=4ef2f9e39c8d7c9dc605fb062a50d8a73b52c02a;hpb=d2d92ed054055987568b9c1b205b558ab8937ed4 diff --git a/http_functions.c b/http_functions.c index 88aefb4..d9cefaf 100644 --- a/http_functions.c +++ b/http_functions.c @@ -1590,6 +1590,42 @@ PHP_FUNCTION(http_uncompress) #endif /* HTTP_HAVE_ZLIB */ /* }}} */ +/* {{{ proto int http_support([int feature = 0]) + * + * Check for feature that require external libraries. + * + * Accpepts an optional in parameter specifying which feature to probe for. + * If the parameter is 0 or omitted, the return value contains a bitmask of + * all supported featuers that depend on external libraries. + * + * Available features to probe for are: + * - HTTP_SUPPORT: always set + * - HTTP_SUPPORT_REQUESTS: whether ext/http was linked against libcurl, + * and HTTP requests can be issued + * - HTTP_SUPPORT_SSLREQUESTS: whether libcurl was linked against openssl, + * and SSL requests can be issued + * - HTTP_SUPPORT_ENCOGINS: whether ext/http was linked against zlib, + * and compressed HTTP responses can be decoded + * - HTTP_SUPPORTS_MHASHETAGS: whether ext/http was linked against libhmash, + * and ETags can be generated with the available mhash algorithms + * - HTTP_SUPPORTS_MAGICMIME: whether ext/http was linked against libmagic, + * and the HttpResponse::guessContentType() method is usable + * + * Returns int, whether requested feature is supported, or a bitmask with + * all supported features. + */ +PHP_FUNCTION(http_support) +{ + long feature = 0; + + RETVAL_LONG(0L); + + if (SUCCESS == zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|l", &feature)) { + RETVAL_LONG(http_support(feature)); + } +} +/* }}} */ + PHP_FUNCTION(http_test) { }