mirror of
https://github.com/Icinga/icinga2.git
synced 2025-12-06 05:20:04 +01: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));
|
|
}
|