mirror of https://github.com/Icinga/icinga2.git
26 lines
523 B
C
26 lines
523 B
C
|
#ifndef AUTHENTICATIONCOMPONENT_H
|
||
|
#define AUTHENTICATIONCOMPONENT_H
|
||
|
|
||
|
namespace icinga
|
||
|
{
|
||
|
|
||
|
class AuthenticationComponent : public Component
|
||
|
{
|
||
|
private:
|
||
|
VirtualEndpoint::Ptr m_AuthenticationEndpoint;
|
||
|
|
||
|
IcingaApplication::Ptr GetIcingaApplication(void) const;
|
||
|
|
||
|
int NewEndpointHandler(const NewEndpointEventArgs& neea);
|
||
|
int IdentityMessageHandler(const NewRequestEventArgs& nrea);
|
||
|
|
||
|
public:
|
||
|
virtual string GetName(void) const;
|
||
|
virtual void Start(void);
|
||
|
virtual void Stop(void);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif /* AUTHENTICATIONCOMPONENT_H */
|