blob: 15c8b37df38bd4ee3ec55cc6564f74d45e90b622 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef SERVER_SELECT
# define SERVER_SELECT
extern void select_restart();
extern void select_add_sock_for_read(int sock);
extern void select_add_sock_for_write(int sock);
extern int select_action();
extern int select_is_change_sock(int sock);
extern int select_is_change_sock_for_read(int sock);
extern int select_is_change_sock_for_write(int sock);
#endif
|