INSTALL changed and modify website name

pull/484/head
YuQing 2019-11-23 09:56:35 +08:00
parent ad22505fd2
commit 949f53b15d
106 changed files with 187 additions and 141 deletions

72
INSTALL
View File

@ -3,50 +3,65 @@ Copy right 2009 Happy Fish / YuQing
FastDFS may be copied only under the terms of the GNU General FastDFS may be copied only under the terms of the GNU General
Public License V3, which may be found in the FastDFS source kit. Public License V3, which may be found in the FastDFS source kit.
Please visit the FastDFS Home Page for more detail. Please visit the FastDFS Home Page for more detail.
English language: http://english.csource.org/ Chinese language: http://www.fastken.com/
Chinese language: http://www.csource.org/
#step 1. download libfastcommon source package from github and install it, # step 1. download libfastcommon source codes and install it,
the github address: # github address: https://github.com/happyfish100/libfastcommon.git
https://github.com/happyfish100/libfastcommon.git # gitee address: https://gitee.com/fastdfs100/libfastcommon.git
# get source codes as:
git clone https://github.com/happyfish100/libfastcommon.git
cd libfastcommon; git checkout V1.0.41
./make.sh clean && ./make.sh && ./make.sh install
#step 2. download FastDFS source package and unpack it,
tar xzf FastDFS_v5.x.tar.gz
#for example:
tar xzf FastDFS_v5.08.tar.gz
#step 3. enter the FastDFS dir # step 2. download fastdfs source codes and install it,
cd FastDFS # github address: https://github.com/happyfish100/fastdfs.git
# gitee address: https://gitee.com/fastdfs100/fastdfs.git
# get source codes as:
git clone https://github.com/happyfish100/fastdfs.git
cd fastdfs; git checkout V6.03
./make.sh clean && ./make.sh && ./make.sh install
#step 4. execute:
./make.sh
#step 5. make install # step 3. setup the config files
./make.sh install the setup script does NOT overwrite existing config files,
please feel free to execute this script (take easy :)
./setup.sh /etc/fdfs
#step 6. edit/modify the config file of tracker and storage
#step 7. run server programs # step 4. edit or modify the config files of tracker, storage and client
such as:
vi /etc/fdfs/tracker.conf
vi /etc/fdfs/storage.conf
vi /etc/fdfs/client.conf
and so on ...
# step 5. run the server programs
# start the tracker server: # start the tracker server:
/usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart /usr/bin/fdfs_trackerd /etc/fdfs/tracker.conf restart
#in Linux, you can start fdfs_trackerd as a service:
/sbin/service fdfs_trackerd start
# start the storage server: # start the storage server:
/usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart /usr/bin/fdfs_storaged /etc/fdfs/storage.conf restart
#in Linux, you can start fdfs_storaged as a service:
/sbin/service fdfs_storaged start
#step 8. run test program # (optional) in Linux, you can start fdfs_trackerd and fdfs_storaged as a service:
#run the client test program: /sbin/service fdfs_trackerd restart
/sbin/service fdfs_storaged restart
# step 6. (optional) run monitor program
# such as:
/usr/bin/fdfs_monitor /etc/fdfs/client.conf
# step 7. (optional) run the test program
# such as:
/usr/bin/fdfs_test <client_conf_filename> <operation> /usr/bin/fdfs_test <client_conf_filename> <operation>
/usr/bin/fdfs_test1 <client_conf_filename> <operation> /usr/bin/fdfs_test1 <client_conf_filename> <operation>
#for example, upload a file:
/usr/bin/fdfs_test conf/client.conf upload /usr/include/stdlib.h
#step 9. run monitor program # for example, upload a file for test:
#run the monitor program: /usr/bin/fdfs_test /etc/fdfs/client.conf upload /usr/include/stdlib.h
/usr/bin/fdfs_monitor <client_conf_filename>
tracker server config file sample please see conf/tracker.conf tracker server config file sample please see conf/tracker.conf
@ -55,7 +70,6 @@ storage server config file sample please see conf/storage.conf
client config file sample please see conf/client.conf client config file sample please see conf/client.conf
Item detail Item detail
1. server common items 1. server common items
--------------------------------------------------- ---------------------------------------------------

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//client_func.c //client_func.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//client_func.h //client_func.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdlib.h> #include <stdlib.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//client_global.h //client_global.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>
@ -83,7 +83,7 @@ int main(int argc, char *argv[])
"\nCopyright (C) 2008, Happy Fish / YuQing\n" \ "\nCopyright (C) 2008, Happy Fish / YuQing\n" \
"\nFastDFS may be copied only under the terms of the GNU General\n" \ "\nFastDFS may be copied only under the terms of the GNU General\n" \
"Public License V3, which may be found in the FastDFS source kit.\n" \ "Public License V3, which may be found in the FastDFS source kit.\n" \
"Please visit the FastDFS Home Page http://www.csource.org/ \n" \ "Please visit the FastDFS Home Page http://www.fastken.com/ \n" \
"for more detail.\n\n" \ "for more detail.\n\n" \
, g_fdfs_version.major, g_fdfs_version.minor); , g_fdfs_version.major, g_fdfs_version.minor);

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>
@ -82,7 +82,7 @@ int main(int argc, char *argv[])
"\nCopyright (C) 2008, Happy Fish / YuQing\n" \ "\nCopyright (C) 2008, Happy Fish / YuQing\n" \
"\nFastDFS may be copied only under the terms of the GNU General\n" \ "\nFastDFS may be copied only under the terms of the GNU General\n" \
"Public License V3, which may be found in the FastDFS source kit.\n" \ "Public License V3, which may be found in the FastDFS source kit.\n" \
"Please visit the FastDFS Home Page http://www.csource.org/ \n" \ "Please visit the FastDFS Home Page http://www.fastken.com/ \n" \
"for more detail.\n\n" \ "for more detail.\n\n" \
, g_fdfs_version.major, g_fdfs_version.minor); , g_fdfs_version.major, g_fdfs_version.minor);

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#ifndef FDFS_CLIENT_H #ifndef FDFS_CLIENT_H

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>
@ -84,7 +84,7 @@ int main(int argc, char *argv[])
"\nCopyright (C) 2008, Happy Fish / YuQing\n" \ "\nCopyright (C) 2008, Happy Fish / YuQing\n" \
"\nFastDFS may be copied only under the terms of the GNU General\n" \ "\nFastDFS may be copied only under the terms of the GNU General\n" \
"Public License V3, which may be found in the FastDFS source kit.\n" \ "Public License V3, which may be found in the FastDFS source kit.\n" \
"Please visit the FastDFS Home Page http://www.csource.org/ \n" \ "Please visit the FastDFS Home Page http://www.fastken.com/ \n" \
"for more detail.\n\n" \ "for more detail.\n\n" \
, g_fdfs_version.major, g_fdfs_version.minor); , g_fdfs_version.major, g_fdfs_version.minor);

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>
@ -82,7 +82,7 @@ int main(int argc, char *argv[])
"\nCopyright (C) 2008, Happy Fish / YuQing\n" \ "\nCopyright (C) 2008, Happy Fish / YuQing\n" \
"\nFastDFS may be copied only under the terms of the GNU General\n" \ "\nFastDFS may be copied only under the terms of the GNU General\n" \
"Public License V3, which may be found in the FastDFS source kit.\n" \ "Public License V3, which may be found in the FastDFS source kit.\n" \
"Please visit the FastDFS Home Page http://www.csource.org/ \n" \ "Please visit the FastDFS Home Page http://www.fastken.com/ \n" \
"for more detail.\n\n" \ "for more detail.\n\n" \
, g_fdfs_version.major, g_fdfs_version.minor); , g_fdfs_version.major, g_fdfs_version.minor);

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#ifndef STORAGE_CLIENT_H #ifndef STORAGE_CLIENT_H

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#ifndef STORAGE_CLIENT1_H #ifndef STORAGE_CLIENT1_H

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>
@ -84,7 +84,7 @@ int main(int argc, char *argv[])
"\nCopyright (C) 2008, Happy Fish / YuQing\n" \ "\nCopyright (C) 2008, Happy Fish / YuQing\n" \
"\nFastDFS may be copied only under the terms of the GNU General\n" \ "\nFastDFS may be copied only under the terms of the GNU General\n" \
"Public License V3, which may be found in the FastDFS source kit.\n" \ "Public License V3, which may be found in the FastDFS source kit.\n" \
"Please visit the FastDFS Home Page http://www.csource.org/ \n" \ "Please visit the FastDFS Home Page http://www.fastken.com/ \n" \
"for more detail.\n\n" \ "for more detail.\n\n" \
, g_fdfs_version.major, g_fdfs_version.minor); , g_fdfs_version.major, g_fdfs_version.minor);

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>
@ -82,7 +82,7 @@ int main(int argc, char *argv[])
"\nCopyright (C) 2008, Happy Fish / YuQing\n" \ "\nCopyright (C) 2008, Happy Fish / YuQing\n" \
"\nFastDFS may be copied only under the terms of the GNU General\n" \ "\nFastDFS may be copied only under the terms of the GNU General\n" \
"Public License V3, which may be found in the FastDFS source kit.\n" \ "Public License V3, which may be found in the FastDFS source kit.\n" \
"Please visit the FastDFS Home Page http://www.csource.org/ \n" \ "Please visit the FastDFS Home Page http://www.fastken.com/ \n" \
"for more detail.\n\n" \ "for more detail.\n\n" \
, g_fdfs_version.major, g_fdfs_version.minor); , g_fdfs_version.major, g_fdfs_version.minor);

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#ifndef TRACKER_CLIENT_H #ifndef TRACKER_CLIENT_H

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdfs_define.h //fdfs_define.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <time.h> #include <time.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdfs_global.h //fdfs_global.h

View File

@ -4,7 +4,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <time.h> #include <time.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#ifndef _FDFS_HTTP_SHARED_H #ifndef _FDFS_HTTP_SHARED_H

View File

@ -4,7 +4,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <time.h> #include <time.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#ifndef _MINE_FILE_PARSER_H #ifndef _MINE_FILE_PARSER_H

32
setup.sh Executable file
View File

@ -0,0 +1,32 @@
if [ -n "$1" ]; then
TARGET_CONF_PATH=$1
else
TARGET_CONF_PATH=/etc/fdfs
fi
mkdir -p $TARGET_CONF_PATH
if [ ! -f $TARGET_CONF_PATH/tracker.conf ]; then
cp -f conf/tracker.conf $TARGET_CONF_PATH/tracker.conf
fi
if [ ! -f $TARGET_CONF_PATH/storage.conf ]; then
cp -f conf/storage.conf $TARGET_CONF_PATH/storage.conf
fi
if [ ! -f $TARGET_CONF_PATH/client.conf ]; then
cp -f conf/client.conf $TARGET_CONF_PATH/client.conf
fi
if [ ! -f $TARGET_CONF_PATH/storage_ids.conf ]; then
cp -f conf/storage_ids.conf $TARGET_CONF_PATH/storage_ids.conf
fi
if [ ! -f $TARGET_CONF_PATH/http.conf ]; then
cp -f conf/http.conf $TARGET_CONF_PATH/http.conf
fi
if [ ! -f $TARGET_CONF_PATH/mime.types ]; then
cp -f conf/mime.types $TARGET_CONF_PATH/mime.types
fi

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdht_client.h //fdht_client.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdht_define.h //fdht_define.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdht_func.c //fdht_func.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdht_func.h //fdht_func.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <netdb.h> #include <netdb.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdht_global.h //fdht_global.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <sys/types.h> #include <sys/types.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdht_proto.h //fdht_proto.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdht_proto_types.h //fdht_proto_types.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdht_types.h //fdht_types.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_dio.h //storage_dio.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_disk_recovery.h //storage_disk_recovery.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_dump.h //storage_dump.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_func.c //storage_func.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_func.h //storage_func.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <netdb.h> #include <netdb.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_global.h //storage_global.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_ip_changed_dealer.h //storage_ip_changed_dealer.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_nio.h //tracker_nio.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_param_getter.h //storage_param_getter.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_service.c //storage_service.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_service.h //storage_service.h

View File

@ -2,7 +2,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_sync.c //storage_sync.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_sync.h //storage_sync.h

View File

@ -2,7 +2,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_sync_func.c //storage_sync_func.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//storage_sync_func.h //storage_sync_func.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_client_thread.h //tracker_client_thread.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_client.c //trunk_client.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_client.h //trunk_client.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_free_block_checker.c //trunk_free_block_checker.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_free_block_checker.h //trunk_free_block_checker.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_mem.c //trunk_mem.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_mem.h //trunk_mem.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_shared.c //trunk_shared.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_shared.h //trunk_shared.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_sync.c //trunk_sync.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//trunk_sync.h //trunk_sync.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdlib.h> #include <stdlib.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdfs_server_id_func.h //fdfs_server_id_func.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdlib.h> #include <stdlib.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//fdfs_shared_func.h //fdfs_shared_func.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_dump.h //tracker_dump.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_func.c //tracker_func.c

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_func.h //tracker_func.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include "tracker_global.h" #include "tracker_global.h"

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_global.h //tracker_global.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_httpd.h //tracker_httpd.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <sys/types.h> #include <sys/types.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_mem.h //tracker_mem.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <stdio.h> #include <stdio.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_nio.h //tracker_nio.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <sys/types.h> #include <sys/types.h>

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
//tracker_proto.h //tracker_proto.h

View File

@ -3,7 +3,7 @@
* *
* FastDFS may be copied only under the terms of the GNU General * FastDFS may be copied only under the terms of the GNU General
* Public License V3, which may be found in the FastDFS source kit. * Public License V3, which may be found in the FastDFS source kit.
* Please visit the FastDFS Home Page http://www.csource.org/ for more detail. * Please visit the FastDFS Home Page http://www.fastken.com/ for more detail.
**/ **/
#include <sys/types.h> #include <sys/types.h>

Some files were not shown because too many files have changed in this diff Show More