diff --git a/INSTALL b/INSTALL index 36e452f..5eaa9de 100644 --- a/INSTALL +++ b/INSTALL @@ -3,50 +3,65 @@ Copy right 2009 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 for more detail. -English language: http://english.csource.org/ -Chinese language: http://www.csource.org/ +Chinese language: http://www.fastken.com/ -#step 1. download libfastcommon source package from github and install it, - the github address: - https://github.com/happyfish100/libfastcommon.git +# step 1. download libfastcommon source codes and install it, +# github address: 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 -cd FastDFS +# step 2. download fastdfs source codes and install it, +# 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 -./make.sh install +# step 3. setup the config files + 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 -#start the tracker server: +# 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: /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 -#in Linux, you can start fdfs_storaged as a service: -/sbin/service fdfs_storaged start -#step 8. run test program -#run the client test program: +# (optional) in Linux, you can start fdfs_trackerd and fdfs_storaged as a service: +/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 /usr/bin/fdfs_test1 -#for example, upload a file: -/usr/bin/fdfs_test conf/client.conf upload /usr/include/stdlib.h -#step 9. run monitor program -#run the monitor program: -/usr/bin/fdfs_monitor +# for example, upload a file for test: +/usr/bin/fdfs_test /etc/fdfs/client.conf upload /usr/include/stdlib.h 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 - Item detail 1. server common items --------------------------------------------------- diff --git a/client/client_func.c b/client/client_func.c index 1b8fe05..610abf2 100644 --- a/client/client_func.c +++ b/client/client_func.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //client_func.c diff --git a/client/client_func.h b/client/client_func.h index f3f2dfd..e0f317e 100644 --- a/client/client_func.h +++ b/client/client_func.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //client_func.h diff --git a/client/client_global.c b/client/client_global.c index 19964b4..fa2553c 100644 --- a/client/client_global.c +++ b/client/client_global.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/client_global.h b/client/client_global.h index 35f5818..5c72442 100644 --- a/client/client_global.h +++ b/client/client_global.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //client_global.h diff --git a/client/fdfs_append_file.c b/client/fdfs_append_file.c index 39f9b73..1b1e451 100644 --- a/client/fdfs_append_file.c +++ b/client/fdfs_append_file.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/fdfs_appender_test.c b/client/fdfs_appender_test.c index 13821fb..f49e0be 100644 --- a/client/fdfs_appender_test.c +++ b/client/fdfs_appender_test.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include @@ -83,7 +83,7 @@ int main(int argc, char *argv[]) "\nCopyright (C) 2008, Happy Fish / YuQing\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" \ -"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" \ , g_fdfs_version.major, g_fdfs_version.minor); diff --git a/client/fdfs_appender_test1.c b/client/fdfs_appender_test1.c index e713053..7fb0f22 100644 --- a/client/fdfs_appender_test1.c +++ b/client/fdfs_appender_test1.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include @@ -82,7 +82,7 @@ int main(int argc, char *argv[]) "\nCopyright (C) 2008, Happy Fish / YuQing\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" \ -"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" \ , g_fdfs_version.major, g_fdfs_version.minor); diff --git a/client/fdfs_client.h b/client/fdfs_client.h index aaf9a39..d77b165 100644 --- a/client/fdfs_client.h +++ b/client/fdfs_client.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #ifndef FDFS_CLIENT_H diff --git a/client/fdfs_crc32.c b/client/fdfs_crc32.c index 7de0e9e..94b1d9f 100644 --- a/client/fdfs_crc32.c +++ b/client/fdfs_crc32.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/fdfs_delete_file.c b/client/fdfs_delete_file.c index 83636ab..7d9369c 100644 --- a/client/fdfs_delete_file.c +++ b/client/fdfs_delete_file.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/fdfs_download_file.c b/client/fdfs_download_file.c index 331ed2d..7cf5f93 100644 --- a/client/fdfs_download_file.c +++ b/client/fdfs_download_file.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/fdfs_file_info.c b/client/fdfs_file_info.c index f8b41ae..0d2a49d 100644 --- a/client/fdfs_file_info.c +++ b/client/fdfs_file_info.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/fdfs_monitor.c b/client/fdfs_monitor.c index ef1c53f..d648cab 100644 --- a/client/fdfs_monitor.c +++ b/client/fdfs_monitor.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/fdfs_regenerate_filename.c b/client/fdfs_regenerate_filename.c index ef07462..e3a19d7 100644 --- a/client/fdfs_regenerate_filename.c +++ b/client/fdfs_regenerate_filename.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/fdfs_test.c b/client/fdfs_test.c index 639bac8..16850b9 100644 --- a/client/fdfs_test.c +++ b/client/fdfs_test.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include @@ -84,7 +84,7 @@ int main(int argc, char *argv[]) "\nCopyright (C) 2008, Happy Fish / YuQing\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" \ -"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" \ , g_fdfs_version.major, g_fdfs_version.minor); diff --git a/client/fdfs_test1.c b/client/fdfs_test1.c index 124fc49..9b015a8 100644 --- a/client/fdfs_test1.c +++ b/client/fdfs_test1.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include @@ -82,7 +82,7 @@ int main(int argc, char *argv[]) "\nCopyright (C) 2008, Happy Fish / YuQing\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" \ -"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" \ , g_fdfs_version.major, g_fdfs_version.minor); diff --git a/client/fdfs_upload_appender.c b/client/fdfs_upload_appender.c index 81ea98d..a195553 100644 --- a/client/fdfs_upload_appender.c +++ b/client/fdfs_upload_appender.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/fdfs_upload_file.c b/client/fdfs_upload_file.c index f121203..4bac235 100644 --- a/client/fdfs_upload_file.c +++ b/client/fdfs_upload_file.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/storage_client.c b/client/storage_client.c index da87f81..576990b 100644 --- a/client/storage_client.c +++ b/client/storage_client.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ diff --git a/client/storage_client.h b/client/storage_client.h index fd4849e..11e2e47 100644 --- a/client/storage_client.h +++ b/client/storage_client.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #ifndef STORAGE_CLIENT_H diff --git a/client/storage_client1.h b/client/storage_client1.h index 7a4bf77..a0358f2 100644 --- a/client/storage_client1.h +++ b/client/storage_client1.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #ifndef STORAGE_CLIENT1_H diff --git a/client/test/fdfs_monitor.c b/client/test/fdfs_monitor.c index 6bcc703..742cf56 100644 --- a/client/test/fdfs_monitor.c +++ b/client/test/fdfs_monitor.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/client/test/fdfs_test.c b/client/test/fdfs_test.c index 639bac8..16850b9 100644 --- a/client/test/fdfs_test.c +++ b/client/test/fdfs_test.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include @@ -84,7 +84,7 @@ int main(int argc, char *argv[]) "\nCopyright (C) 2008, Happy Fish / YuQing\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" \ -"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" \ , g_fdfs_version.major, g_fdfs_version.minor); diff --git a/client/test/fdfs_test1.c b/client/test/fdfs_test1.c index 124fc49..9b015a8 100644 --- a/client/test/fdfs_test1.c +++ b/client/test/fdfs_test1.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include @@ -82,7 +82,7 @@ int main(int argc, char *argv[]) "\nCopyright (C) 2008, Happy Fish / YuQing\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" \ -"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" \ , g_fdfs_version.major, g_fdfs_version.minor); diff --git a/client/tracker_client.c b/client/tracker_client.c index 3062b05..7f6a533 100644 --- a/client/tracker_client.c +++ b/client/tracker_client.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ diff --git a/client/tracker_client.h b/client/tracker_client.h index 58b37a1..93f0b99 100644 --- a/client/tracker_client.h +++ b/client/tracker_client.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #ifndef TRACKER_CLIENT_H diff --git a/common/fdfs_define.h b/common/fdfs_define.h index 92ffe36..0579bc4 100644 --- a/common/fdfs_define.h +++ b/common/fdfs_define.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdfs_define.h diff --git a/common/fdfs_global.c b/common/fdfs_global.c index 0176051..d17aa3d 100644 --- a/common/fdfs_global.c +++ b/common/fdfs_global.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/common/fdfs_global.h b/common/fdfs_global.h index 98a99df..ca0e3d3 100644 --- a/common/fdfs_global.h +++ b/common/fdfs_global.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdfs_global.h diff --git a/common/fdfs_http_shared.c b/common/fdfs_http_shared.c index ff79fb6..43197e1 100644 --- a/common/fdfs_http_shared.c +++ b/common/fdfs_http_shared.c @@ -4,7 +4,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/common/fdfs_http_shared.h b/common/fdfs_http_shared.h index 5da53ad..679eb95 100644 --- a/common/fdfs_http_shared.h +++ b/common/fdfs_http_shared.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #ifndef _FDFS_HTTP_SHARED_H diff --git a/common/mime_file_parser.c b/common/mime_file_parser.c index aa7461c..e7bcfce 100644 --- a/common/mime_file_parser.c +++ b/common/mime_file_parser.c @@ -4,7 +4,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/common/mime_file_parser.h b/common/mime_file_parser.h index ecb2c4f..681f388 100644 --- a/common/mime_file_parser.h +++ b/common/mime_file_parser.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #ifndef _MINE_FILE_PARSER_H diff --git a/setup.sh b/setup.sh new file mode 100755 index 0000000..3a8d5c6 --- /dev/null +++ b/setup.sh @@ -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 diff --git a/storage/fdfs_storaged.c b/storage/fdfs_storaged.c index 5d49f30..3e57b54 100644 --- a/storage/fdfs_storaged.c +++ b/storage/fdfs_storaged.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/storage/fdht_client/fdht_client.c b/storage/fdht_client/fdht_client.c index 7ae6718..bd57d06 100644 --- a/storage/fdht_client/fdht_client.c +++ b/storage/fdht_client/fdht_client.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/storage/fdht_client/fdht_client.h b/storage/fdht_client/fdht_client.h index 07222a8..2658ee1 100644 --- a/storage/fdht_client/fdht_client.h +++ b/storage/fdht_client/fdht_client.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdht_client.h diff --git a/storage/fdht_client/fdht_define.h b/storage/fdht_client/fdht_define.h index c61afd9..5a479f8 100644 --- a/storage/fdht_client/fdht_define.h +++ b/storage/fdht_client/fdht_define.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdht_define.h diff --git a/storage/fdht_client/fdht_func.c b/storage/fdht_client/fdht_func.c index 765fd16..fa3730d 100644 --- a/storage/fdht_client/fdht_func.c +++ b/storage/fdht_client/fdht_func.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdht_func.c diff --git a/storage/fdht_client/fdht_func.h b/storage/fdht_client/fdht_func.h index 7bfee30..592f0f4 100644 --- a/storage/fdht_client/fdht_func.h +++ b/storage/fdht_client/fdht_func.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdht_func.h diff --git a/storage/fdht_client/fdht_global.c b/storage/fdht_client/fdht_global.c index ce93a63..5cd8c7b 100644 --- a/storage/fdht_client/fdht_global.c +++ b/storage/fdht_client/fdht_global.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/storage/fdht_client/fdht_global.h b/storage/fdht_client/fdht_global.h index c6fa467..580ae92 100644 --- a/storage/fdht_client/fdht_global.h +++ b/storage/fdht_client/fdht_global.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdht_global.h diff --git a/storage/fdht_client/fdht_proto.c b/storage/fdht_client/fdht_proto.c index 418ca62..8d6a6c4 100644 --- a/storage/fdht_client/fdht_proto.c +++ b/storage/fdht_client/fdht_proto.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/storage/fdht_client/fdht_proto.h b/storage/fdht_client/fdht_proto.h index 93e87b9..69b667a 100644 --- a/storage/fdht_client/fdht_proto.h +++ b/storage/fdht_client/fdht_proto.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdht_proto.h diff --git a/storage/fdht_client/fdht_proto_types.h b/storage/fdht_client/fdht_proto_types.h index cdf2588..98c5504 100644 --- a/storage/fdht_client/fdht_proto_types.h +++ b/storage/fdht_client/fdht_proto_types.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdht_proto_types.h diff --git a/storage/fdht_client/fdht_types.h b/storage/fdht_client/fdht_types.h index 37b0ec1..673e0e7 100644 --- a/storage/fdht_client/fdht_types.h +++ b/storage/fdht_client/fdht_types.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdht_types.h diff --git a/storage/storage_dio.c b/storage/storage_dio.c index 90caa76..0b9ccd5 100644 --- a/storage/storage_dio.c +++ b/storage/storage_dio.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/storage/storage_dio.h b/storage/storage_dio.h index 9d517fa..e58b90b 100644 --- a/storage/storage_dio.h +++ b/storage/storage_dio.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_dio.h diff --git a/storage/storage_disk_recovery.c b/storage/storage_disk_recovery.c index 985ed5d..dc0b59a 100644 --- a/storage/storage_disk_recovery.c +++ b/storage/storage_disk_recovery.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ diff --git a/storage/storage_disk_recovery.h b/storage/storage_disk_recovery.h index 053f1dd..9a8a06c 100644 --- a/storage/storage_disk_recovery.h +++ b/storage/storage_disk_recovery.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_disk_recovery.h diff --git a/storage/storage_dump.c b/storage/storage_dump.c index badefef..e7c8dd6 100644 --- a/storage/storage_dump.c +++ b/storage/storage_dump.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/storage/storage_dump.h b/storage/storage_dump.h index 4da03a0..2fc090c 100644 --- a/storage/storage_dump.h +++ b/storage/storage_dump.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_dump.h diff --git a/storage/storage_func.c b/storage/storage_func.c index a698926..701fbac 100644 --- a/storage/storage_func.c +++ b/storage/storage_func.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_func.c diff --git a/storage/storage_func.h b/storage/storage_func.h index fdc38a9..8eb4c9e 100644 --- a/storage/storage_func.h +++ b/storage/storage_func.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_func.h diff --git a/storage/storage_global.c b/storage/storage_global.c index 166a3dd..55d54e6 100644 --- a/storage/storage_global.c +++ b/storage/storage_global.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/storage/storage_global.h b/storage/storage_global.h index 718e8f0..b7e938a 100644 --- a/storage/storage_global.h +++ b/storage/storage_global.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_global.h diff --git a/storage/storage_ip_changed_dealer.c b/storage/storage_ip_changed_dealer.c index 91d7748..58e4af6 100644 --- a/storage/storage_ip_changed_dealer.c +++ b/storage/storage_ip_changed_dealer.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ diff --git a/storage/storage_ip_changed_dealer.h b/storage/storage_ip_changed_dealer.h index f5639ec..0947711 100644 --- a/storage/storage_ip_changed_dealer.h +++ b/storage/storage_ip_changed_dealer.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_ip_changed_dealer.h diff --git a/storage/storage_nio.c b/storage/storage_nio.c index 911ff0a..b4b04d6 100644 --- a/storage/storage_nio.c +++ b/storage/storage_nio.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/storage/storage_nio.h b/storage/storage_nio.h index d33870f..bb79ecb 100644 --- a/storage/storage_nio.h +++ b/storage/storage_nio.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_nio.h diff --git a/storage/storage_param_getter.c b/storage/storage_param_getter.c index d4ffd17..cca4055 100644 --- a/storage/storage_param_getter.c +++ b/storage/storage_param_getter.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ diff --git a/storage/storage_param_getter.h b/storage/storage_param_getter.h index 7d6e020..16dd480 100644 --- a/storage/storage_param_getter.h +++ b/storage/storage_param_getter.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_param_getter.h diff --git a/storage/storage_service.c b/storage/storage_service.c index 5ee573d..b5c92a0 100644 --- a/storage/storage_service.c +++ b/storage/storage_service.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_service.c diff --git a/storage/storage_service.h b/storage/storage_service.h index ea96ce5..f24a2d2 100644 --- a/storage/storage_service.h +++ b/storage/storage_service.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_service.h diff --git a/storage/storage_sync.c b/storage/storage_sync.c index 1265640..5c4cf99 100644 --- a/storage/storage_sync.c +++ b/storage/storage_sync.c @@ -2,7 +2,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_sync.c diff --git a/storage/storage_sync.h b/storage/storage_sync.h index aaf4bca..7dfa99d 100644 --- a/storage/storage_sync.h +++ b/storage/storage_sync.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_sync.h diff --git a/storage/storage_sync_func.c b/storage/storage_sync_func.c index e1bd700..72a7fb8 100644 --- a/storage/storage_sync_func.c +++ b/storage/storage_sync_func.c @@ -2,7 +2,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_sync_func.c diff --git a/storage/storage_sync_func.h b/storage/storage_sync_func.h index 70cdb1b..487ec3b 100644 --- a/storage/storage_sync_func.h +++ b/storage/storage_sync_func.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //storage_sync_func.h diff --git a/storage/tracker_client_thread.c b/storage/tracker_client_thread.c index 27ea40b..a7f4fe3 100644 --- a/storage/tracker_client_thread.c +++ b/storage/tracker_client_thread.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ diff --git a/storage/tracker_client_thread.h b/storage/tracker_client_thread.h index c6ce687..38704dc 100644 --- a/storage/tracker_client_thread.h +++ b/storage/tracker_client_thread.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_client_thread.h diff --git a/storage/trunk_mgr/trunk_client.c b/storage/trunk_mgr/trunk_client.c index 240ca1b..1ea60ff 100644 --- a/storage/trunk_mgr/trunk_client.c +++ b/storage/trunk_mgr/trunk_client.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_client.c diff --git a/storage/trunk_mgr/trunk_client.h b/storage/trunk_mgr/trunk_client.h index e094c8f..5b457e6 100644 --- a/storage/trunk_mgr/trunk_client.h +++ b/storage/trunk_mgr/trunk_client.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_client.h diff --git a/storage/trunk_mgr/trunk_free_block_checker.c b/storage/trunk_mgr/trunk_free_block_checker.c index 46ac87f..0b8a2d9 100644 --- a/storage/trunk_mgr/trunk_free_block_checker.c +++ b/storage/trunk_mgr/trunk_free_block_checker.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_free_block_checker.c diff --git a/storage/trunk_mgr/trunk_free_block_checker.h b/storage/trunk_mgr/trunk_free_block_checker.h index e539365..4f83b63 100644 --- a/storage/trunk_mgr/trunk_free_block_checker.h +++ b/storage/trunk_mgr/trunk_free_block_checker.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_free_block_checker.h diff --git a/storage/trunk_mgr/trunk_mem.c b/storage/trunk_mgr/trunk_mem.c index 5aa8812..1add39d 100644 --- a/storage/trunk_mgr/trunk_mem.c +++ b/storage/trunk_mgr/trunk_mem.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_mem.c diff --git a/storage/trunk_mgr/trunk_mem.h b/storage/trunk_mgr/trunk_mem.h index dc3cac4..d47de3a 100644 --- a/storage/trunk_mgr/trunk_mem.h +++ b/storage/trunk_mgr/trunk_mem.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_mem.h diff --git a/storage/trunk_mgr/trunk_shared.c b/storage/trunk_mgr/trunk_shared.c index 9eeefc6..d65758e 100644 --- a/storage/trunk_mgr/trunk_shared.c +++ b/storage/trunk_mgr/trunk_shared.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_shared.c diff --git a/storage/trunk_mgr/trunk_shared.h b/storage/trunk_mgr/trunk_shared.h index 9fcab70..85f11e2 100644 --- a/storage/trunk_mgr/trunk_shared.h +++ b/storage/trunk_mgr/trunk_shared.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_shared.h diff --git a/storage/trunk_mgr/trunk_sync.c b/storage/trunk_mgr/trunk_sync.c index e359ac1..ca86522 100644 --- a/storage/trunk_mgr/trunk_sync.c +++ b/storage/trunk_mgr/trunk_sync.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_sync.c diff --git a/storage/trunk_mgr/trunk_sync.h b/storage/trunk_mgr/trunk_sync.h index 015392c..58e4b6a 100644 --- a/storage/trunk_mgr/trunk_sync.h +++ b/storage/trunk_mgr/trunk_sync.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //trunk_sync.h diff --git a/tracker/fdfs_server_id_func.c b/tracker/fdfs_server_id_func.c index 6db18e1..8d76415 100644 --- a/tracker/fdfs_server_id_func.c +++ b/tracker/fdfs_server_id_func.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/tracker/fdfs_server_id_func.h b/tracker/fdfs_server_id_func.h index 44557dc..a0f6007 100644 --- a/tracker/fdfs_server_id_func.h +++ b/tracker/fdfs_server_id_func.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdfs_server_id_func.h diff --git a/tracker/fdfs_shared_func.c b/tracker/fdfs_shared_func.c index 61397db..8d07163 100644 --- a/tracker/fdfs_shared_func.c +++ b/tracker/fdfs_shared_func.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/tracker/fdfs_shared_func.h b/tracker/fdfs_shared_func.h index 38a79ac..aced559 100644 --- a/tracker/fdfs_shared_func.h +++ b/tracker/fdfs_shared_func.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //fdfs_shared_func.h diff --git a/tracker/fdfs_trackerd.c b/tracker/fdfs_trackerd.c index 85f97d9..3985169 100644 --- a/tracker/fdfs_trackerd.c +++ b/tracker/fdfs_trackerd.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/tracker/tracker_dump.c b/tracker/tracker_dump.c index 732d43a..8a8c444 100644 --- a/tracker/tracker_dump.c +++ b/tracker/tracker_dump.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/tracker/tracker_dump.h b/tracker/tracker_dump.h index 8a16368..f737a19 100644 --- a/tracker/tracker_dump.h +++ b/tracker/tracker_dump.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_dump.h diff --git a/tracker/tracker_func.c b/tracker/tracker_func.c index 1041e8b..e357c04 100644 --- a/tracker/tracker_func.c +++ b/tracker/tracker_func.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_func.c diff --git a/tracker/tracker_func.h b/tracker/tracker_func.h index cb044f6..67a0737 100644 --- a/tracker/tracker_func.h +++ b/tracker/tracker_func.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_func.h diff --git a/tracker/tracker_global.c b/tracker/tracker_global.c index 98967b3..4b8999b 100644 --- a/tracker/tracker_global.c +++ b/tracker/tracker_global.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include "tracker_global.h" diff --git a/tracker/tracker_global.h b/tracker/tracker_global.h index af3d010..70f01df 100644 --- a/tracker/tracker_global.h +++ b/tracker/tracker_global.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_global.h diff --git a/tracker/tracker_http_check.h b/tracker/tracker_http_check.h index 6bfd23a..39e8743 100644 --- a/tracker/tracker_http_check.h +++ b/tracker/tracker_http_check.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_httpd.h diff --git a/tracker/tracker_mem.c b/tracker/tracker_mem.c index 90c574d..0161e0a 100644 --- a/tracker/tracker_mem.c +++ b/tracker/tracker_mem.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/tracker/tracker_mem.h b/tracker/tracker_mem.h index 0d8273f..4083bfb 100644 --- a/tracker/tracker_mem.h +++ b/tracker/tracker_mem.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_mem.h diff --git a/tracker/tracker_nio.c b/tracker/tracker_nio.c index 9d1f69f..92f230f 100644 --- a/tracker/tracker_nio.c +++ b/tracker/tracker_nio.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/tracker/tracker_nio.h b/tracker/tracker_nio.h index e4625d4..85140a8 100644 --- a/tracker/tracker_nio.h +++ b/tracker/tracker_nio.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_nio.h diff --git a/tracker/tracker_proto.c b/tracker/tracker_proto.c index 94afadc..a319193 100644 --- a/tracker/tracker_proto.c +++ b/tracker/tracker_proto.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/tracker/tracker_proto.h b/tracker/tracker_proto.h index 7106d5b..41069dd 100644 --- a/tracker/tracker_proto.h +++ b/tracker/tracker_proto.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_proto.h diff --git a/tracker/tracker_relationship.c b/tracker/tracker_relationship.c index c8a5516..dd38457 100644 --- a/tracker/tracker_relationship.c +++ b/tracker/tracker_relationship.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ #include diff --git a/tracker/tracker_relationship.h b/tracker/tracker_relationship.h index 4e0dc47..b51ee81 100644 --- a/tracker/tracker_relationship.h +++ b/tracker/tracker_relationship.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_relationship.h diff --git a/tracker/tracker_service.c b/tracker/tracker_service.c index 7316740..5926344 100644 --- a/tracker/tracker_service.c +++ b/tracker/tracker_service.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_service.c diff --git a/tracker/tracker_service.h b/tracker/tracker_service.h index 62d56f3..b52d5db 100644 --- a/tracker/tracker_service.h +++ b/tracker/tracker_service.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_service.h diff --git a/tracker/tracker_status.c b/tracker/tracker_status.c index ce4e5ab..347d4ab 100644 --- a/tracker/tracker_status.c +++ b/tracker/tracker_status.c @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_func.c diff --git a/tracker/tracker_status.h b/tracker/tracker_status.h index c45b5e9..91629cc 100644 --- a/tracker/tracker_status.h +++ b/tracker/tracker_status.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_status.h diff --git a/tracker/tracker_types.h b/tracker/tracker_types.h index 8e7bb75..b92002f 100644 --- a/tracker/tracker_types.h +++ b/tracker/tracker_types.h @@ -3,7 +3,7 @@ * * 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.csource.org/ for more detail. +* Please visit the FastDFS Home Page http://www.fastken.com/ for more detail. **/ //tracker_types.h