00001 #ifndef CHUNK_H 00002 #define CHUNK_H 00003 00017 typedef struct chunk { 00022 int id; 00026 int size; 00030 uint8_t *data; 00035 uint64_t timestamp; 00043 void *attributes; 00047 int attributes_size; 00048 } Chunk; 00049 #endif