Пример #1
0
 /**
  * Constructor
  * @param string $server URL of the Server to connect to
  * @since 0.1.0
  */
 function IXR_ClientSSL($server, $path = false, $port = 443, $timeout = false)
 {
     parent::IXR_Client($server, $path, $port, $timeout);
     $this->useragent = 'The Incutio XML-RPC PHP Library for SSL';
     // Set class fields
     $this->_certFile = false;
     $this->_caFile = false;
     $this->_keyFile = false;
     $this->_passphrase = '';
 }
Пример #2
0
 /**
  * Constructor
  * @param string $server URL of the Server to connect to
  * @since 0.1.0
  */
 function IXR_ClientSSL($server, $path = false, $port = 443, $timeout = false)
 {
     parent::IXR_Client($server, $path, $port, $timeout);
     $this->useragent = 'Badge Directory XML-RPC SSL Client V1';
     // Set class fields
     $this->_certFile = false;
     $this->_caFile = false;
     $this->_keyFile = false;
     $this->_passphrase = '';
 }
Пример #3
0
 public function __construct($server, $path = false, $port = 80)
 {
     parent::IXR_Client($server, $path, $port);
     $this->useragent = 'The Incutio XML-RPC PHP Library (multicall client)';
 }
Пример #4
0
 /**
  * Constructor
  * @param string $server URL of the Server to connect to
  * @since 0.1.0
  */
 function IXR_ClientSSL($server, $path = false, $port = 443, $timeout = false)
 {
     parent::IXR_Client($server, $path, $port);
     $this->useragent = 'The Incutio XML-RPC PHP Library for SSL';
     //Set class fields
     $this->_certFile = false;
     $this->_caFile = false;
     $this->_keyFile = false;
     $this->_passphrase = '';
     //Since 23Jun2004 (0.1.2) - Made timeout a class field
     //and changed default from 5s to 15s
     if (!$timeout) {
         $this->timeout = 15;
     } else {
         $this->timeout = $timeout;
     }
 }
Пример #5
0
 function IXR_ClientMulticall($server, $path = false, $port = 80)
 {
     parent::IXR_Client($server, $path, $port);
     $this->useragent = 'Gblog';
 }
Пример #6
-1
 function IXR_ClientMulticall($server, $path = false, $port = 80)
 {
     parent::IXR_Client($server, $path, $port);
     //$this->useragent = 'The Incutio XML-RPC PHP Library (multicall client)';
 }