1 ssh.inc public FileTransferSSH::connect()

Connects to the server.

Overrides FileTransfer::connect

File

core/includes/filetransfer/ssh.inc, line 16

Class

FileTransferSSH
The SSH connection class for the update module.

Code

public 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.');
  }
}