blob: e7396099039fbc10a6a337cc99b5377be21026ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef MAIL_TRANSACTION_LOG_VIEW_PRIVATE_H
#define MAIL_TRANSACTION_LOG_VIEW_PRIVATE_H
#include "mail-transaction-log-private.h"
struct mail_transaction_log_view {
struct mail_transaction_log *log;
struct mail_transaction_log_view *next;
uint32_t min_file_seq, max_file_seq;
uoff_t min_file_offset, max_file_offset;
struct mail_transaction_header tmp_hdr;
/* a list of log files we've referenced. we have to keep this list
explicitly because more files may be added into the linked list
at any time. */
ARRAY(struct mail_transaction_log_file *) file_refs;
struct mail_transaction_log_file *cur, *head, *tail;
uoff_t cur_offset;
uint64_t prev_modseq;
uint32_t prev_file_seq;
uoff_t prev_file_offset;
struct mail_transaction_log_file *mark_file;
uoff_t mark_offset, mark_next_offset;
uint64_t mark_modseq;
bool broken:1;
};
#endif
|