mirror of https://github.com/Icinga/icinga2.git
44 lines
756 B
C++
44 lines
756 B
C++
#ifndef TCPCLIENT_H
|
|
#define TCPCLIENT_H
|
|
|
|
namespace icinga
|
|
{
|
|
|
|
class I2_BASE_API TCPClient : public TCPSocket
|
|
{
|
|
private:
|
|
string m_PeerHost;
|
|
int m_PeerPort;
|
|
|
|
FIFO::Ptr m_SendQueue;
|
|
FIFO::Ptr m_RecvQueue;
|
|
|
|
int ReadableEventHandler(const EventArgs& ea);
|
|
int WritableEventHandler(const EventArgs& ea);
|
|
|
|
public:
|
|
typedef shared_ptr<TCPClient> Ptr;
|
|
typedef weak_ptr<TCPClient> WeakPtr;
|
|
|
|
TCPClient(void);
|
|
|
|
virtual void Start(void);
|
|
|
|
void Connect(const string& hostname, unsigned short port);
|
|
|
|
FIFO::Ptr GetSendQueue(void);
|
|
FIFO::Ptr GetRecvQueue(void);
|
|
|
|
string GetPeerHost(void);
|
|
int GetPeerPort(void);
|
|
|
|
virtual bool WantsToRead(void) const;
|
|
virtual bool WantsToWrite(void) const;
|
|
|
|
Event<EventArgs> OnDataAvailable;
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* TCPCLIENT_H */
|