├── .gitignore ├── AUTHORS ├── CMakeLists.txt ├── COPYING ├── CPackConfig.cmake ├── CTestConfig.cmake ├── CTestCustom.cmake ├── ChangeLog ├── ConfigureChecks.cmake ├── DefineOptions.cmake ├── INSTALL ├── README ├── client ├── CMakeLists.txt ├── csync_auth.c ├── csync_auth.h └── csync_client.c ├── cmake ├── Modules │ ├── COPYING-CMAKE-SCRIPTS │ ├── DefineCMakeDefaults.cmake │ ├── DefineCompilerFlags.cmake │ ├── DefineInstallationPaths.cmake │ ├── DefinePlatformDefaults.cmake │ ├── FindArgp.cmake │ ├── FindCheck.cmake │ ├── FindIniparser.cmake │ ├── FindLibSSH.cmake │ ├── FindLibsmbclient.cmake │ ├── FindLog4C.cmake │ ├── FindNeon.cmake │ ├── FindPackageVersionCheck.cmake │ ├── FindSQLite3.cmake │ ├── MacroAddCheckTest.cmake │ ├── MacroAddCompileFlags.cmake │ ├── MacroAddLinkFlags.cmake │ ├── MacroAddPlugin.cmake │ ├── MacroCheckCCompilerFlagSSP.cmake │ ├── MacroCheckTest.cmake │ ├── MacroCopyFile.cmake │ ├── MacroEnsureOutOfSourceBuild.cmake │ ├── UseAsciidoc.cmake │ └── UseDoxygen.cmake └── Scripts │ ├── generate_findpackage_file │ └── generate_lib_file ├── config.h.cmake ├── config ├── CMakeLists.txt ├── csync.conf ├── csync_exclude.conf └── csync_log.conf ├── doc ├── CMakeLists.txt ├── asciidoc.conf ├── codeheader.c ├── codeheader.h ├── csync.1 ├── csync.1.txt ├── csync.txt ├── doxy.config.in ├── makeguide.sh ├── makeman.sh └── userguide │ ├── csync.html │ └── images │ └── icons │ ├── README │ ├── callouts │ ├── 1.png │ ├── 10.png │ ├── 11.png │ ├── 12.png │ ├── 13.png │ ├── 14.png │ ├── 15.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ └── 9.png │ ├── caution.png │ ├── example.png │ ├── home.png │ ├── important.png │ ├── next.png │ ├── note.png │ ├── prev.png │ ├── tip.png │ ├── up.png │ └── warning.png ├── modules ├── CMakeLists.txt ├── csync_dummy.c ├── csync_owncloud.c ├── csync_sftp.c ├── csync_sftp2.c └── csync_smb.c ├── src ├── CMakeLists.txt ├── csync.c ├── csync.h ├── csync_config.c ├── csync_config.h ├── csync_exclude.c ├── csync_exclude.h ├── csync_lock.c ├── csync_lock.h ├── csync_log.h ├── csync_macros.h ├── csync_misc.c ├── csync_misc.h ├── csync_private.h ├── csync_propagate.c ├── csync_propagate.h ├── csync_reconcile.c ├── csync_reconcile.h ├── csync_statedb.c ├── csync_statedb.h ├── csync_time.c ├── csync_time.h ├── csync_update.c ├── csync_update.h ├── csync_util.c ├── csync_util.h ├── std │ ├── CMakeLists.txt │ ├── c_alloc.c │ ├── c_alloc.h │ ├── c_dir.c │ ├── c_dir.h │ ├── c_file.c │ ├── c_file.h │ ├── c_jhash.h │ ├── c_lib.h │ ├── c_list.c │ ├── c_list.h │ ├── c_macro.h │ ├── c_path.c │ ├── c_path.h │ ├── c_private.h │ ├── c_rbtree.c │ ├── c_rbtree.h │ ├── c_string.c │ ├── c_string.h │ ├── c_time.c │ └── c_time.h └── vio │ ├── csync_vio.c │ ├── csync_vio.h │ ├── csync_vio_file_stat.c │ ├── csync_vio_file_stat.h │ ├── csync_vio_handle.c │ ├── csync_vio_handle.h │ ├── csync_vio_handle_private.h │ ├── csync_vio_local.c │ ├── csync_vio_local.h │ ├── csync_vio_method.h │ └── csync_vio_module.h └── tests ├── CMakeLists.txt ├── cmdline.c ├── csync_tests ├── check_csync_config.c ├── check_csync_create.c ├── check_csync_exclude.c ├── check_csync_init.c ├── check_csync_lock.c ├── check_csync_statedb_load.c ├── check_csync_statedb_query.c ├── check_csync_time.c ├── check_csync_update.c └── check_csync_util.c ├── log_tests └── check_log.c ├── std_tests ├── check_std_c_alloc.c ├── check_std_c_dir.c ├── check_std_c_file.c ├── check_std_c_jhash.c ├── check_std_c_list.c ├── check_std_c_path.c ├── check_std_c_rbtree.c ├── check_std_c_str.c └── check_std_c_time.c ├── support.c ├── support.h ├── valgrind-csync.supp └── vio_tests ├── check_vio.c ├── check_vio_file_stat.c ├── check_vio_handle.c └── check_vio_local.c /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | *.swp 3 | *~$ 4 | build* 5 | cscope.* 6 | tags 7 | *~ 8 | *.kdev4 9 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/COPYING -------------------------------------------------------------------------------- /CPackConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/CPackConfig.cmake -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /CTestCustom.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/CTestCustom.cmake -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/ChangeLog -------------------------------------------------------------------------------- /ConfigureChecks.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/ConfigureChecks.cmake -------------------------------------------------------------------------------- /DefineOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/DefineOptions.cmake -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/INSTALL -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/README -------------------------------------------------------------------------------- /client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/client/CMakeLists.txt -------------------------------------------------------------------------------- /client/csync_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/client/csync_auth.c -------------------------------------------------------------------------------- /client/csync_auth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/client/csync_auth.h -------------------------------------------------------------------------------- /client/csync_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/client/csync_client.c -------------------------------------------------------------------------------- /cmake/Modules/COPYING-CMAKE-SCRIPTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/COPYING-CMAKE-SCRIPTS -------------------------------------------------------------------------------- /cmake/Modules/DefineCMakeDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/DefineCMakeDefaults.cmake -------------------------------------------------------------------------------- /cmake/Modules/DefineCompilerFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/DefineCompilerFlags.cmake -------------------------------------------------------------------------------- /cmake/Modules/DefineInstallationPaths.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/DefineInstallationPaths.cmake -------------------------------------------------------------------------------- /cmake/Modules/DefinePlatformDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/DefinePlatformDefaults.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindArgp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/FindArgp.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindCheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/FindCheck.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindIniparser.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/FindIniparser.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindLibSSH.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/FindLibSSH.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindLibsmbclient.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/FindLibsmbclient.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindLog4C.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/FindLog4C.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindNeon.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/FindNeon.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindPackageVersionCheck.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/FindPackageVersionCheck.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindSQLite3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/FindSQLite3.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroAddCheckTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/MacroAddCheckTest.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroAddCompileFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/MacroAddCompileFlags.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroAddLinkFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/MacroAddLinkFlags.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroAddPlugin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/MacroAddPlugin.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroCheckCCompilerFlagSSP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/MacroCheckCCompilerFlagSSP.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroCheckTest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/MacroCheckTest.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroCopyFile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/MacroCopyFile.cmake -------------------------------------------------------------------------------- /cmake/Modules/MacroEnsureOutOfSourceBuild.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake -------------------------------------------------------------------------------- /cmake/Modules/UseAsciidoc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/UseAsciidoc.cmake -------------------------------------------------------------------------------- /cmake/Modules/UseDoxygen.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Modules/UseDoxygen.cmake -------------------------------------------------------------------------------- /cmake/Scripts/generate_findpackage_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Scripts/generate_findpackage_file -------------------------------------------------------------------------------- /cmake/Scripts/generate_lib_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/cmake/Scripts/generate_lib_file -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/config.h.cmake -------------------------------------------------------------------------------- /config/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/config/CMakeLists.txt -------------------------------------------------------------------------------- /config/csync.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/config/csync.conf -------------------------------------------------------------------------------- /config/csync_exclude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/config/csync_exclude.conf -------------------------------------------------------------------------------- /config/csync_log.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/config/csync_log.conf -------------------------------------------------------------------------------- /doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/CMakeLists.txt -------------------------------------------------------------------------------- /doc/asciidoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/asciidoc.conf -------------------------------------------------------------------------------- /doc/codeheader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/codeheader.c -------------------------------------------------------------------------------- /doc/codeheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/codeheader.h -------------------------------------------------------------------------------- /doc/csync.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/csync.1 -------------------------------------------------------------------------------- /doc/csync.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/csync.1.txt -------------------------------------------------------------------------------- /doc/csync.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/csync.txt -------------------------------------------------------------------------------- /doc/doxy.config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/doxy.config.in -------------------------------------------------------------------------------- /doc/makeguide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/makeguide.sh -------------------------------------------------------------------------------- /doc/makeman.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/makeman.sh -------------------------------------------------------------------------------- /doc/userguide/csync.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/csync.html -------------------------------------------------------------------------------- /doc/userguide/images/icons/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/README -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/1.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/10.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/11.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/12.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/13.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/14.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/15.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/2.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/3.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/4.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/5.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/6.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/7.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/8.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/callouts/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/callouts/9.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/caution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/caution.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/example.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/home.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/important.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/next.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/note.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/prev.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/tip.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/up.png -------------------------------------------------------------------------------- /doc/userguide/images/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/doc/userguide/images/icons/warning.png -------------------------------------------------------------------------------- /modules/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/modules/CMakeLists.txt -------------------------------------------------------------------------------- /modules/csync_dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/modules/csync_dummy.c -------------------------------------------------------------------------------- /modules/csync_owncloud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/modules/csync_owncloud.c -------------------------------------------------------------------------------- /modules/csync_sftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/modules/csync_sftp.c -------------------------------------------------------------------------------- /modules/csync_sftp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/modules/csync_sftp2.c -------------------------------------------------------------------------------- /modules/csync_smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/modules/csync_smb.c -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/csync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync.c -------------------------------------------------------------------------------- /src/csync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync.h -------------------------------------------------------------------------------- /src/csync_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_config.c -------------------------------------------------------------------------------- /src/csync_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_config.h -------------------------------------------------------------------------------- /src/csync_exclude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_exclude.c -------------------------------------------------------------------------------- /src/csync_exclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_exclude.h -------------------------------------------------------------------------------- /src/csync_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_lock.c -------------------------------------------------------------------------------- /src/csync_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_lock.h -------------------------------------------------------------------------------- /src/csync_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_log.h -------------------------------------------------------------------------------- /src/csync_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_macros.h -------------------------------------------------------------------------------- /src/csync_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_misc.c -------------------------------------------------------------------------------- /src/csync_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_misc.h -------------------------------------------------------------------------------- /src/csync_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_private.h -------------------------------------------------------------------------------- /src/csync_propagate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_propagate.c -------------------------------------------------------------------------------- /src/csync_propagate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_propagate.h -------------------------------------------------------------------------------- /src/csync_reconcile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_reconcile.c -------------------------------------------------------------------------------- /src/csync_reconcile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_reconcile.h -------------------------------------------------------------------------------- /src/csync_statedb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_statedb.c -------------------------------------------------------------------------------- /src/csync_statedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_statedb.h -------------------------------------------------------------------------------- /src/csync_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_time.c -------------------------------------------------------------------------------- /src/csync_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_time.h -------------------------------------------------------------------------------- /src/csync_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_update.c -------------------------------------------------------------------------------- /src/csync_update.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_update.h -------------------------------------------------------------------------------- /src/csync_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_util.c -------------------------------------------------------------------------------- /src/csync_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/csync_util.h -------------------------------------------------------------------------------- /src/std/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/CMakeLists.txt -------------------------------------------------------------------------------- /src/std/c_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_alloc.c -------------------------------------------------------------------------------- /src/std/c_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_alloc.h -------------------------------------------------------------------------------- /src/std/c_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_dir.c -------------------------------------------------------------------------------- /src/std/c_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_dir.h -------------------------------------------------------------------------------- /src/std/c_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_file.c -------------------------------------------------------------------------------- /src/std/c_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_file.h -------------------------------------------------------------------------------- /src/std/c_jhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_jhash.h -------------------------------------------------------------------------------- /src/std/c_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_lib.h -------------------------------------------------------------------------------- /src/std/c_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_list.c -------------------------------------------------------------------------------- /src/std/c_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_list.h -------------------------------------------------------------------------------- /src/std/c_macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_macro.h -------------------------------------------------------------------------------- /src/std/c_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_path.c -------------------------------------------------------------------------------- /src/std/c_path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_path.h -------------------------------------------------------------------------------- /src/std/c_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_private.h -------------------------------------------------------------------------------- /src/std/c_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_rbtree.c -------------------------------------------------------------------------------- /src/std/c_rbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_rbtree.h -------------------------------------------------------------------------------- /src/std/c_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_string.c -------------------------------------------------------------------------------- /src/std/c_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_string.h -------------------------------------------------------------------------------- /src/std/c_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_time.c -------------------------------------------------------------------------------- /src/std/c_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/std/c_time.h -------------------------------------------------------------------------------- /src/vio/csync_vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio.c -------------------------------------------------------------------------------- /src/vio/csync_vio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio.h -------------------------------------------------------------------------------- /src/vio/csync_vio_file_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio_file_stat.c -------------------------------------------------------------------------------- /src/vio/csync_vio_file_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio_file_stat.h -------------------------------------------------------------------------------- /src/vio/csync_vio_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio_handle.c -------------------------------------------------------------------------------- /src/vio/csync_vio_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio_handle.h -------------------------------------------------------------------------------- /src/vio/csync_vio_handle_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio_handle_private.h -------------------------------------------------------------------------------- /src/vio/csync_vio_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio_local.c -------------------------------------------------------------------------------- /src/vio/csync_vio_local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio_local.h -------------------------------------------------------------------------------- /src/vio/csync_vio_method.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio_method.h -------------------------------------------------------------------------------- /src/vio/csync_vio_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/src/vio/csync_vio_module.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/cmdline.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_config.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_create.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_exclude.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_exclude.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_init.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_lock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_lock.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_statedb_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_statedb_load.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_statedb_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_statedb_query.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_time.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_update.c -------------------------------------------------------------------------------- /tests/csync_tests/check_csync_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/csync_tests/check_csync_util.c -------------------------------------------------------------------------------- /tests/log_tests/check_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/log_tests/check_log.c -------------------------------------------------------------------------------- /tests/std_tests/check_std_c_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/std_tests/check_std_c_alloc.c -------------------------------------------------------------------------------- /tests/std_tests/check_std_c_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/std_tests/check_std_c_dir.c -------------------------------------------------------------------------------- /tests/std_tests/check_std_c_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/std_tests/check_std_c_file.c -------------------------------------------------------------------------------- /tests/std_tests/check_std_c_jhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/std_tests/check_std_c_jhash.c -------------------------------------------------------------------------------- /tests/std_tests/check_std_c_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/std_tests/check_std_c_list.c -------------------------------------------------------------------------------- /tests/std_tests/check_std_c_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/std_tests/check_std_c_path.c -------------------------------------------------------------------------------- /tests/std_tests/check_std_c_rbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/std_tests/check_std_c_rbtree.c -------------------------------------------------------------------------------- /tests/std_tests/check_std_c_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/std_tests/check_std_c_str.c -------------------------------------------------------------------------------- /tests/std_tests/check_std_c_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/std_tests/check_std_c_time.c -------------------------------------------------------------------------------- /tests/support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/support.c -------------------------------------------------------------------------------- /tests/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/support.h -------------------------------------------------------------------------------- /tests/valgrind-csync.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/valgrind-csync.supp -------------------------------------------------------------------------------- /tests/vio_tests/check_vio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/vio_tests/check_vio.c -------------------------------------------------------------------------------- /tests/vio_tests/check_vio_file_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/vio_tests/check_vio_file_stat.c -------------------------------------------------------------------------------- /tests/vio_tests/check_vio_handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/vio_tests/check_vio_handle.c -------------------------------------------------------------------------------- /tests/vio_tests/check_vio_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dschmidt/csync/HEAD/tests/vio_tests/check_vio_local.c --------------------------------------------------------------------------------