Commit | Line | Data |
---|---|---|
d876a5ba EB |
1 | /* CTF 1.8 */ |
2 | typealias integer { size = 8; align = 8; signed = false; base = 10; } := uint8_t; | |
3 | typealias integer { size = 32; align = 32; signed = false; base = hex; } := uint32_t; | |
4 | ||
5 | trace { | |
ac82f1d9 PP |
6 | major = 1; |
7 | minor = 8; | |
d876a5ba | 8 | test = "\""; |
684bd521 | 9 | test2 = "?\x20\040?"; |
d876a5ba EB |
10 | test3 = '\n'; |
11 | uuid = "2a6422d0-6cee-11e0-8c08-cb07d7b3a564"; | |
12 | byte_order = le; | |
13 | packet.header := struct { | |
14 | uint32_t magic; | |
15 | uint8_t uuid[16]; | |
16 | }; | |
17 | }; | |
18 | ||
19 | stream { | |
20 | packet.context := struct { | |
21 | uint32_t content_size; | |
22 | uint32_t packet_size; | |
23 | }; | |
24 | }; | |
25 | ||
26 | event { | |
27 | name = string; | |
28 | fields := struct { string str; }; | |
29 | }; |