blob: 387505c72c5a1a0384072833ac1344712c67dfbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#ifndef WC_CLIENTBASE_H
#define WC_CLIENTBASE_H
#include "../const_vars.hpp"
class ClientBase {
protected:
int fd;
char out_buffer[max_msg_len]; // for message
int out_buf_used;
bool exit_flag;
bool connection;
public:
ClientBase(const char* ip, int port);
virtual ~ClientBase();
int ConstuctorError() const { return fd > -1 ? 0 : 1; }
int Run();
void BreakLoop() { exit_flag = true; }
virtual void HandleActions() {}
virtual void AddMessage(const char *msg, int type) {}
void SendMessage(const char *msg);
private:
int CreateSocket(const char* ip, int port);
};
#endif
|