Lines Matching refs:certRequest

2030 …var $certRequest = array();	// keys must be cainfofile (optional), sslcertfile, sslkeyfile, passph…  variable in soap_transport_http
2201 if (isset($this->certRequest['cainfofile'])) {
2202 curl_setopt($this->ch, CURLOPT_CAINFO, $this->certRequest['cainfofile']);
2204 if (isset($this->certRequest['verifypeer'])) {
2205 curl_setopt($this->ch, CURLOPT_SSL_VERIFYPEER, $this->certRequest['verifypeer']);
2209 if (isset($this->certRequest['verifyhost'])) {
2210 curl_setopt($this->ch, CURLOPT_SSL_VERIFYHOST, $this->certRequest['verifyhost']);
2214 if (isset($this->certRequest['sslcertfile'])) {
2215 curl_setopt($this->ch, CURLOPT_SSLCERT, $this->certRequest['sslcertfile']);
2217 if (isset($this->certRequest['sslkeyfile'])) {
2218 curl_setopt($this->ch, CURLOPT_SSLKEY, $this->certRequest['sslkeyfile']);
2220 if (isset($this->certRequest['passphrase'])) {
2221 curl_setopt($this->ch, CURLOPT_SSLKEYPASSWD , $this->certRequest['passphrase']);
2294 …* @param array $certRequest (keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphra…
2297 …ials($username, $password, $authtype = 'basic', $digestRequest = array(), $certRequest = array()) { argument
2345 $this->certRequest = $certRequest;
6412 var $certRequest = array(); variable in soapclient
6760 …tp->setCredentials($this->username, $this->password, $this->authtype, array(), $this->certRequest);
6912 …* @param array $certRequest (keys must be cainfofile (optional), sslcertfile, sslkeyfile, passphra…
6915 function setCredentials($username, $password, $authtype = 'basic', $certRequest = array()) { argument
6919 $this->certRequest = $certRequest;