forked from viabtc/viabtc_exchange_server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmp_config.h
58 lines (50 loc) · 1.18 KB
/
mp_config.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
56
57
/*
* Description:
* History: yang@haipo.me, 2017/04/16, create
*/
# ifndef _MP_CONFIG_H_
# define _MP_CONFIG_H_
# include <math.h>
# include <stdio.h>
# include <error.h>
# include <errno.h>
# include <ctype.h>
# include <string.h>
# include <stdlib.h>
# include <unistd.h>
# include <assert.h>
# include <inttypes.h>
# include "nw_svr.h"
# include "nw_clt.h"
# include "nw_job.h"
# include "nw_timer.h"
# include "ut_log.h"
# include "ut_sds.h"
# include "ut_cli.h"
# include "ut_misc.h"
# include "ut_list.h"
# include "ut_kafka.h"
# include "ut_signal.h"
# include "ut_config.h"
# include "ut_define.h"
# include "ut_decimal.h"
# include "ut_rpc_clt.h"
# include "ut_rpc_svr.h"
# include "ut_rpc_cmd.h"
struct settings {
bool debug;
process_cfg process;
log_cfg log;
alert_cfg alert;
rpc_svr_cfg svr;
kafka_consumer_cfg deals;
redis_sentinel_cfg redis;
int timezone;
int sec_max;
int min_max;
int hour_max;
double cache_timeout;
};
extern struct settings settings;
int init_config(const char *path);
# endif