1 /**
2 * Copyright (C) 2008 Happy Fish / YuQing
3 *
4 * FastDFS may be copied only under the terms of the GNU General
5 * Public License V3, which may be found in the FastDFS source kit.
6 * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
7 **/
8 
9 //tracker_func.h
10 
11 #ifndef _TRACKER_FUNC_H_
12 #define _TRACKER_FUNC_H_
13 
14 #include "tracker_types.h"
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif
19 
20 int tracker_load_from_conf_file(const char *filename, \
21 		char *bind_addr, const int addr_size);
22 
23 #ifdef __cplusplus
24 }
25 #endif
26 
27 #endif
28