36 lines
805 B
C
36 lines
805 B
C
/**
|
|
* Copyright (C) 2008 Happy Fish / YuQing
|
|
*
|
|
* FastDFS may be copied only under the terms of the GNU General
|
|
* Public License V3, which may be found in the FastDFS source kit.
|
|
* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
|
|
**/
|
|
|
|
//client_global.h
|
|
|
|
#ifndef _CLIENT_GLOBAL_H
|
|
#define _CLIENT_GLOBAL_H
|
|
|
|
#include "fastcommon/common_define.h"
|
|
#include "tracker_types.h"
|
|
#include "fdfs_shared_func.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
extern int g_tracker_server_http_port;
|
|
extern TrackerServerGroup g_tracker_group;
|
|
|
|
extern bool g_anti_steal_token;
|
|
extern BufferInfo g_anti_steal_secret_key;
|
|
|
|
#define fdfs_get_tracker_leader_index(leaderIp, leaderPort) \
|
|
fdfs_get_tracker_leader_index_ex(&g_tracker_group, \
|
|
leaderIp, leaderPort)
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|