Requests_Proxy_HTTP::curl_before_send( resource $handle )

Set cURL parameters before the data is sent


Description Description


Parameters Parameters

$handle

(resource) (Required) cURL resource


Top ↑

Source Source

File: wp-includes/Requests/Proxy/HTTP.php

	public function curl_before_send(&$handle) {
		curl_setopt($handle, CURLOPT_PROXYTYPE, CURLPROXY_HTTP);
		curl_setopt($handle, CURLOPT_PROXY, $this->proxy);

		if ($this->use_authentication) {
			curl_setopt($handle, CURLOPT_PROXYAUTH, CURLAUTH_ANY);
			curl_setopt($handle, CURLOPT_PROXYUSERPWD, $this->get_auth_string());
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.6 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.