icinga2/lib/remote/messageorigin.hpp

29 lines
420 B
C++
Raw Normal View History

/* Icinga 2 | (c) 2012 Icinga GmbH | GPLv2+ */
2013-09-17 07:18:26 -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
namespace icinga
{
2013-09-17 07:18:26 -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
{
public:
DECLARE_PTR_TYPEDEFS(MessageOrigin);
Zone::Ptr FromZone;
2015-06-22 05:11:21 -04:00
JsonRpcConnection::Ptr FromClient;
bool IsLocal() const;
};
2013-09-17 07:18:26 -04:00
}
#endif /* MESSAGEORIGIN_H */