Skip to content

Commit

Permalink
#57 rbox_move_index() added
Browse files Browse the repository at this point in the history
  • Loading branch information
pburow committed Aug 1, 2017
1 parent 2f7d45f commit ddaaff7
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions src/storage-rbox/rbox-save.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,19 @@ class rbox_save_context {
struct rbox_sync_context *sync_ctx;

/* updated for each appended mail: */
uint32_t seq;
struct istream *input;
uint32_t seq;
struct istream *input;

librmb::RadosStorage &rados_storage;
std::vector<librmb::RadosMailObject *> objects;
librmb::RadosMailObject *current_object;
librmb::RadosStorage &rados_storage;
std::vector<librmb::RadosMailObject *> objects;
librmb::RadosMailObject *current_object;

unsigned int failed : 1;
unsigned int finished : 1;
unsigned int copying : 1;
unsigned int failed : 1;
unsigned int finished : 1;
unsigned int copying : 1;
};

void rbox_add_to_index(struct mail_save_context *_ctx);
void rbox_move_index(struct mail_save_context *_ctx);

#endif /* SRC_STORAGE_RBOX_RBOX_SAVE_H_ */

0 comments on commit ddaaff7

Please sign in to comment.