icinga2/lib/remote/messageorigin.hpp

29 lines
420 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-09-17 13:18:26 +02:00
#ifndef MESSAGEORIGIN_H
#define MESSAGEORIGIN_H
2013-09-17 13:18:26 +02:00
2014-05-25 16:23:35 +02:00
#include "remote/zone.hpp"
2015-06-22 11:11:21 +02:00
#include "remote/jsonrpcconnection.hpp"
2013-09-17 13:18:26 +02:00
namespace icinga
{
2013-09-17 13:18:26 +02:00
/**
* @ingroup remote
*/
2018-01-04 06:11:04 +01:00
class MessageOrigin final : public Object
2013-09-17 13:18:26 +02:00
{
public:
DECLARE_PTR_TYPEDEFS(MessageOrigin);
Zone::Ptr FromZone;
2015-06-22 11:11:21 +02:00
JsonRpcConnection::Ptr FromClient;
bool IsLocal() const;
};
2013-09-17 13:18:26 +02:00
}
#endif /* MESSAGEORIGIN_H */