chunkify/chunk/const.rs
1/// HTTP header name for file ID in chunking operations.
2pub const CHUNKIFY_FILE_ID_HEADER: &str = "x-file-id";
3
4/// HTTP header name for chunk index in chunking operations.
5pub const CHUNKIFY_CHUNK_INDEX_HEADER: &str = "x-chunk-index";
6
7/// HTTP header name for total chunks count in chunking operations.
8pub const CHUNKIFY_TOTAL_CHUNKS_HEADER: &str = "x-total-chunks";
9
10/// HTTP header name for original file name in chunking operations.
11pub const CHUNKIFY_FILE_NAME_HEADER: &str = "x-file-name";