blob: 55c95b57436b7a05e4e2a55dad6323a1502957dd (
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 client_init(char *ip, int port);
extern void client_send(char *msg);
extern void client_event();
extern void client_quit();
#endif
|