WpOrg\Requests\Proxy

Http::curl_before_send()publicWP 1.6

Set cURL parameters before the data is sent

Method of the class: Http{}

No Hooks.

Return

null. Nothing (null).

Usage

$Http = new Http();
$Http->curl_before_send( $handle );
$handle(resource|\CurlHandle) (required) (passed by reference — &)
cURL handle

Changelog

Since 1.6 Introduced.

Http::curl_before_send() code WP 6.6.2

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());
	}
}