-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathservice.h
executable file
·55 lines (41 loc) · 994 Bytes
/
service.h
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#ifndef ASYNC_SERVER_SERVICE_H_
#define ASYNC_SERVER_SERVICE_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <time.h>
#include <glib.h>
#include "bindconf.h"
#include "daemon.h"
struct shm_queue;
struct shm_block;
typedef struct fdsession {
int fd;
uint32_t id;
uint16_t remote_port;
uint32_t remote_ip;
} fdsession_t;
typedef struct fd_array_session {
int count;
GHashTable* cn;
} fd_array_session_t;
typedef struct {
int idle_timeout;
bind_config_elem_t* bc_elem;
} config_cache_t;
extern int is_parent;
extern fd_array_session_t fds;
extern config_cache_t config_cache;
void handle_recv_queue();
int handle_close(int fd);
void run_worker_process(bind_config_t* bc, int bc_elem_idx, int n_inited_bc);
void restart_child_process(bind_config_elem_t* bc_elem);
static inline const fdsession_t*
get_fdsess(int fd)
{
return (fdsession_t*)g_hash_table_lookup(fds.cn, &fd);
}
#ifdef __cplusplus
} // end of extern "C"
#endif
#endif // ASYNC_SERVER_SERVICE_H_