function SSH::connect

Implements Drupal\Core\FileTransfer\FileTransfer::connect().

Overrides FileTransfer::connect

File

drupal/core/lib/Drupal/Core/FileTransfer/SSH.php, line 29
Definition of Drupal\Core\FileTransfer\SSH.

Class

SSH
The SSH connection class for the update module.

Namespace

Drupal\Core\FileTransfer

Code

function connect() {
  $this->connection = @ssh2_connect($this->hostname, $this->port);
  if (!$this->connection) {
    throw new FileTransferException('SSH Connection failed to @host:@port', NULL, array(
      '@host' => $this->hostname,
      '@port' => $this->port,
    ));
  }
  if (!@ssh2_auth_password($this->connection, $this->username, $this->password)) {
    throw new FileTransferException('The supplied username/password combination was not accepted.');
  }
}