mirror of https://github.com/Icinga/icinga2.git
24 lines
357 B
Plaintext
24 lines
357 B
Plaintext
|
#include "base/dynamicobject.h"
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class ApiListener : DynamicObject
|
||
|
{
|
||
|
[config] String cert_path;
|
||
|
[config] String key_path;
|
||
|
[config] String ca_path;
|
||
|
[config] String crl_path;
|
||
|
|
||
|
[config] String bind_host;
|
||
|
[config] String bind_port {
|
||
|
default {{{ return "5665"; }}}
|
||
|
};
|
||
|
|
||
|
[state] double log_message_timestamp;
|
||
|
|
||
|
String identity;
|
||
|
};
|
||
|
|
||
|
}
|