Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/csync
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2018-11-29 19:00:16 +0300
committerKevin Ottens <kevin.ottens@nextcloud.com>2020-12-15 12:58:30 +0300
commit62ec4c9330827ef66333f791f91fd25f299cf9ec (patch)
tree4634df901f1294af40029304a504fee44d60c92f /src/csync
parent8fecff5153ceae161e554fa79114c93704ac3ad9 (diff)
Discovery: Handle the blacklistFiles from the server capabilities
Issue #434 Ideally one could add the blacklist to the exlucde reggexp, but this is simpler
Diffstat (limited to 'src/csync')
-rw-r--r--src/csync/csync_exclude.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/csync/csync_exclude.h b/src/csync/csync_exclude.h
index 0656371e7..d06c5e107 100644
--- a/src/csync/csync_exclude.h
+++ b/src/csync/csync_exclude.h
@@ -43,7 +43,8 @@ enum CSYNC_EXCLUDE_TYPE {
CSYNC_FILE_EXCLUDE_HIDDEN,
CSYNC_FILE_EXCLUDE_STAT_FAILED,
CSYNC_FILE_EXCLUDE_CONFLICT,
- CSYNC_FILE_EXCLUDE_CANNOT_ENCODE
+ CSYNC_FILE_EXCLUDE_CANNOT_ENCODE,
+ CSYNC_FILE_EXCLUDE_SERVER_BLACKLISTED,
};
class ExcludedFilesTest;