/**
  * @see parent::getProps()
  */
 function getProps()
 {
     $props = parent::getProps();
     $props["port"] = "num default|514 notNull";
     $props["protocol"] = "enum list|TCP|UDP|TLS default|TCP notNull";
     $props["timeout"] = "num default|5";
     $props["ssl_certificate"] = "str";
     $props["ssl_passphrase"] = "password show|0 loggable|0";
     $props["iv_passphrase"] = "str show|0 loggable|0";
     return $props;
 }
Example #2
0
 /**
  * @see parent::updateFormFields()
  */
 function updateFormFields()
 {
     parent::updateFormFields();
     $this->_view = $this->port;
 }