More batch-mode fixes to handle redos properly (and without hanging).
[rsync/rsync.git] / rsync.h
diff --git a/rsync.h b/rsync.h
index c23e523..c288a1f 100644 (file)
--- a/rsync.h
+++ b/rsync.h
@@ -814,6 +814,7 @@ struct filter_struct {
 struct filter_list_struct {
        struct filter_struct *head;
        struct filter_struct *tail;
+       struct filter_struct *parent_dirscan_head;
        char *debug_type;
 };
 
@@ -833,6 +834,15 @@ struct stats {
 
 struct chmod_mode_struct;
 
+struct flist_ndx_item {
+       struct flist_ndx_item *next;
+       int ndx;
+};
+
+typedef struct {
+       struct flist_ndx_item *head, *tail;
+} flist_ndx_list;
+
 #define EMPTY_ITEM_LIST {NULL, 0, 0}
 
 typedef struct {