Basic::curl_before_send( resource|CurlHandle $handle )

Set cURL parameters before the data is sent


Parameters

$handle

(Required) cURL handle


Source

File: wp-includes/Requests/src/Auth/Basic.php

	public function curl_before_send(&$handle) {
		curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
		curl_setopt($handle, CURLOPT_USERPWD, $this->getAuthString());
	}