mirror of
https://github.com/Icinga/icinga2.git
synced 2025-10-17 05:18:45 +02:00
9 lines
188 B
C++
9 lines
188 B
C++
#include "i2-jsonrpc.h"
|
|
|
|
using namespace icinga;
|
|
|
|
JsonRpcServer::JsonRpcServer(shared_ptr<SSL_CTX> sslContext)
|
|
{
|
|
SetClientFactory(bind(&JsonRpcClientFactory, RoleInbound, sslContext));
|
|
}
|