You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
608 B
37 lines
608 B
13 years ago
|
#ifndef SOCKET_CLIENT_HPP
|
||
|
#define SOCKET_CLIENT_HPP
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/socket.h>
|
||
|
#include <netinet/in.h>
|
||
|
#include <netdb.h>
|
||
|
|
||
|
class SocketClient
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
SocketClient( const int addrDomain,
|
||
|
const int socketType);
|
||
|
|
||
|
virtual ~SocketClient();
|
||
|
|
||
|
bool send(const std::string msg);
|
||
|
bool receive(std::string &reply);
|
||
|
|
||
|
protected:
|
||
|
|
||
|
bool connect(void);
|
||
|
virtual bool connectToPeer(void) = 0;
|
||
13 years ago
|
std::string errnoToString(const char *s) const;
|
||
13 years ago
|
|
||
|
bool m_connected;
|
||
|
int m_addrDomain;
|
||
|
int m_socketType;
|
||
|
int m_socketfd;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // SOCKET_CLIENT_HPP
|