codename: client meltdown
[m6w6/ext-http] / php_http_curl.c
index e9153b1bda9dabbb0e9c05861da589a334803048..6b2bd33dfbe4163ffe9dc9d83c2e72b579022c21 100644 (file)
@@ -91,12 +91,6 @@ static struct gcry_thread_cbs php_http_gnutls_tsl = {
 
 PHP_MINIT_FUNCTION(http_curl)
 {
-       php_http_client_factory_driver_t driver = {
-               php_http_curl_client_get_ops(),
-               php_http_curl_client_pool_get_ops(),
-               php_http_curl_client_datashare_get_ops()
-       };
-
 #ifdef PHP_HTTP_NEED_OPENSSL_TSL
        /* mod_ssl, libpq or ext/curl might already have set thread lock callbacks */
        if (!CRYPTO_get_id_callback()) {
@@ -120,10 +114,6 @@ PHP_MINIT_FUNCTION(http_curl)
                return FAILURE;
        }
 
-       if (SUCCESS != php_http_client_factory_add_driver(ZEND_STRL("curl"), &driver)) {
-               return FAILURE;
-       }
-
        return SUCCESS;
 }