trace_uuid -> uuid and add packet metadata support
[babeltrace.git] / include / babeltrace / ctf / metadata.h
index 903d018dd9cb7c6811fcb9ce42712a29864c88f3..6ebd0c7c298d16cc7f188be56a8273a06c9a551f 100644 (file)
@@ -29,6 +29,7 @@
 #include <glib.h>
 
 #define CTF_MAGIC      0xC1FC1FC1
+#define TSDL_MAGIC     0x75D11D57
 
 struct ctf_trace;
 struct ctf_stream_class;
@@ -178,4 +179,15 @@ struct ctf_event {
        } field_mask;
 };
 
+struct metadata_packet_header {
+       uint32_t magic;                 /* 0x75D11D57 */
+       uint8_t  uuid[16];              /* Unique Universal Identifier */
+       uint32_t checksum;              /* 0 if unused */
+       uint32_t content_size;          /* in bits */
+       uint32_t packet_size;           /* in bits */
+       uint8_t  compression_scheme;    /* 0 if unused */
+       uint8_t  encryption_scheme;     /* 0 if unused */
+       uint8_t  checksum_scheme;       /* 0 if unused */
+};
+
 #endif /* _BABELTRACE_CTF_METADATA_H */
This page took 0.023389 seconds and 4 git commands to generate.