mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
12 lines
329 B
C
12 lines
329 B
C
#ifndef CHUNK_SETTINGS_H
|
|
#define CHUNK_SETTINGS_H
|
|
|
|
const _i64 c_checkpoint_dist=512*1024;
|
|
const _i64 c_small_hash_dist=4096;
|
|
const unsigned int c_chunk_size=4096;
|
|
const unsigned int c_chunk_padding=1+sizeof(_i64)+sizeof(_u32);
|
|
|
|
const unsigned int small_hash_size=4;
|
|
const unsigned int big_hash_size=16;
|
|
|
|
#endif //CHUNK_SETTINGS_H
|