$caInfo =  ''
	[line 335]
  $caInfo
Set value for CURLOPT_CAINFO. The name of a file holding one or more  certificates to verify the peer with. This only makes sense when used  in combination with CURLOPT_SSL_VERIFYPEER. curl-ca-bundle.crt is  avaible on the Curl website http://curl.haxx.se/ for download inside  the packages.
  
	
	
	
	
	$caPath = 
	[line 346]
  $caPath
Set value for CURLOPT_CAPATH. A directory that holds multiple CA  certificates. Use this option alongside CURLOPT_SSL_VERIFYPEER.
  
	
	
	
	
	$cookies = array()
	[line 244]
  The cookies to send to the remote site
  
	
	
	
	
	$fields = 
	[line 269]
  The fields to send in a 'POST' request
  
	
	
	
	
	$file = 
	[line 216]
  The file to upload (PUT, or FTP methods)
  
	
	
	
	
	$fileSize = 
	[line 225]
  The file size of the file pointed to by the $file  property
  
	
	
	
	
	$file_size =  false
	[line 235]
  The file size of the file pointed to by the $file  property
  
	
	
	
	
	$followLocation =  true
	[line 164]
  Whether or not to follow HTTP Location headers.
  
	
	
	
	
	$follow_location =  false
	[line 173]
  Whether or not to follow HTTP Location headers.
  
	
	
	
	
	$header =  false
	[line 131]
  Whether or not to include the header in the results  of the CURL transfer
  
	
	
	
	
	$httpHeaders =  null
	[line 252]
  Additional HTTP headers to send to the remote site
  
	
	
	
	
	$http_headers =  false
	[line 261]
  Additional HTTP headers to send to the remote site
  
	
	
	
	
	$mute =  false
	[line 156]
  Whether or not to suppress error messages
  
	
	
	
	
	$password =  ''
	[line 90]
  The Password for standard HTTP Authentication
  
	
	
	
	
	$progress =  false
	[line 148]
  Whether or not to display a progress meter for the current transfer
  
	
	
	
	
	$proxy = 
	[line 277]
  The proxy server to go through
  
	
	
	
	
	$proxyPassword = 
	[line 293]
  The password for the Proxy server
  
	
	
	
	
	$proxyUser = 
	[line 285]
  The username for the Proxy server
  
	
	
	
	
	$returnTransfer =  true
	[line 190]
  Whether or not to return the results of the  current transfer
  
	
	
	
	
	$return_transfer =  false
	[line 200]
  Whether or not to return the results of the  current transfer
  
	
	
	
	
	$sslCert = 
	[line 106]
  The filename of the SSL certificate
  
	
	
	
	
	$sslCertPasswd = 
	[line 115]
  The password corresponding to the certificate  in the $sslCert property
  
	
	
	
	
	$sslVersion = 
	[line 98]
  The SSL version for the transfer
  
	
	
	
	
	$timeout =  0
	[line 181]
  Time allowed for current transfer, in seconds.  0 means no limit
  
	
	
	
	
	$type = 
	[line 208]
  The type of transfer to perform (ie. 'POST', 'GET', 'PUT', etc)
  
	
	
	
	
	$url = 
	[line 74]
  The URL for cURL to work with
  
	
	
	
	
	$userAgent = 
	[line 123]
  User Agent string when making an HTTP request
  
	
	
	
	
	$username =  ''
	[line 82]
  The Username for standard HTTP Authentication
  
	
	
	
	
	$verbose =  false
	[line 140]
  Whether or not to output debug information while executing a  curl transfer
  
	
	
	
	
	$verifyHost =  2
	[line 321]
  $verifyHost
- : to stop CURL from verifying the host's certificate.
 - : to check the existence of a common name in the SSL peer certificate.
 - : to check the existence of a common name  and also verify that it
     matches the hostname provided.
 
  
	
	
	
	
	$verifyPeer =  true
	[line 308]
  $verifyPeer
FALSE to stop CURL from verifying the peer's certificate.  Alternate certificates to verify against can be specified  with the CURLOPT_CAINFO option or a certificate directory  can be specified with the CURLOPT_CAPATH option.  CURLOPT_SSL_VERIFYHOST may also need to be TRUE or FALSE  if CURLOPT_SSL_VERIFYPEER is disabled (it defaults to 2).