mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-11-27 00:03:53 +01:00
- 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
9 lines
171 B
PHP
9 lines
171 B
PHP
<?php
|
|
|
|
namespace Icinga\Protocol\Commandpipe\Transport;
|
|
|
|
interface Transport
|
|
{
|
|
public function setEndpoint(\Zend_Config $config);
|
|
public function send($message);
|
|
} |