Jannis Moßhammer d6bbed3a54 Extract the transport functions from the CommandPipe
- The CommandPipe class now delegates submission of commands to
  the Transport classes (LocalPipe or SecureShell)
- Added SSH options for non-interactive mode
- Refactored tests

refs #4441
2013-08-06 09:27:37 +02:00

9 lines
171 B
PHP

<?php
namespace Icinga\Protocol\Commandpipe\Transport;
interface Transport
{
public function setEndpoint(\Zend_Config $config);
public function send($message);
}