mirror of
https://github.com/Icinga/icinga2.git
synced 2025-05-11 10:00:24 +02:00
19 lines
300 B
C++
19 lines
300 B
C++
#ifndef JSONRPCSERVER_H
|
|
#define JSONRPCSERVER_H
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class I2_JSONRPC_API JsonRpcServer : public TCPServer
|
|
{
|
|
public:
|
|
typedef shared_ptr<JsonRpcServer> Ptr;
|
|
typedef weak_ptr<JsonRpcServer> WeakPtr;
|
|
|
|
JsonRpcServer(shared_ptr<SSL_CTX> sslContext);
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* JSONRPCSERVER_H */
|