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