2019-02-25 14:48:22 +01:00
|
|
|
/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
|
2013-09-17 13:18:26 +02:00
|
|
|
|
2014-05-03 20:02:22 +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
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
namespace icinga
|
|
|
|
{
|
2013-09-17 13:18:26 +02:00
|
|
|
|
2014-05-03 20:02:22 +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
|
|
|
{
|
2015-08-04 14:47:44 +02:00
|
|
|
public:
|
|
|
|
DECLARE_PTR_TYPEDEFS(MessageOrigin);
|
|
|
|
|
2014-05-03 20:02:22 +02:00
|
|
|
Zone::Ptr FromZone;
|
2015-06-22 11:11:21 +02:00
|
|
|
JsonRpcConnection::Ptr FromClient;
|
2014-05-03 20:02:22 +02:00
|
|
|
|
2018-01-04 04:25:35 +01:00
|
|
|
bool IsLocal() const;
|
2014-05-03 20:02:22 +02:00
|
|
|
};
|
|
|
|
|
2013-09-17 13:18:26 +02:00
|
|
|
}
|
2014-05-03 20:02:22 +02:00
|
|
|
|
|
|
|
#endif /* MESSAGEORIGIN_H */
|