blob: 1ae84277932799aafcc293a1e1bc8cf666066d08 (
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
31
|
#ifndef USER_H
#define USER_H
#include "clui.hpp"
#include "../const_vars.hpp"
class Client {
int fd;
char in_buffer[max_usermsg_len]; // for input
int in_buf_used;
char out_buffer[max_msg_len]; // for message
int out_buf_used;
bool exit_flag;
Client(int i_fd, char *username);
public:
~Client() { close(fd); }
static Client *Start(const char* ip, int port, char *username);
void Run(ChatRoom *room);
void BreakLoop() { exit_flag = true; }
void HandleButton(ChatRoom *room);
void AddCharToBuffer(char ch);
void RemoveCharFromBuffer();
void SendMessage();
};
#endif
|