icinga2/base/tcpclient.h

38 lines
653 B
C
Raw Normal View History

#ifndef TCPCLIENT_H
#define TCPCLIENT_H
2012-03-28 13:24:49 +02:00
namespace icinga
{
class TCPClient : public TCPSocket
{
private:
FIFO::Ptr m_SendQueue;
FIFO::Ptr m_RecvQueue;
2012-03-28 13:24:49 +02:00
int ReadableEventHandler(EventArgs::Ptr ea);
int WritableEventHandler(EventArgs::Ptr ea);
2012-03-28 13:24:49 +02:00
public:
typedef shared_ptr<TCPClient> Ptr;
typedef weak_ptr<TCPClient> WeakPtr;
2012-03-28 13:24:49 +02:00
TCPClient(void);
virtual void Start(void);
void Connect(const char *hostname, unsigned short port);
FIFO::Ptr GetSendQueue(void);
FIFO::Ptr GetRecvQueue(void);
2012-03-28 13:24:49 +02:00
virtual bool WantsToRead(void) const;
virtual bool WantsToWrite(void) const;
event<EventArgs::Ptr> OnDataAvailable;
2012-03-28 13:24:49 +02:00
};
}
#endif /* TCPCLIENT_H */