blob: bfde073171df453f560f1e20cf77bc96c2b93cca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef MY_CLIENT
#define MY_CLIENT
#include "main.h"
#define CLIENT_TIMEOUT 1000
#define SERVER_TIMEOUT_ALIVE 5000
#define CLIENT_BUFFER_LIMIT 4096
extern int initClient(char *ip, int port, int proto);
extern void sendServer(char *msg);
extern void eventClient();
extern void quitClient();
#endif
|