blob: b793c014b64a8aac82e1f6e17a28a9104b21ea1a [file] [log] [blame]
Qiuhan Ding0cfc1512015-02-17 17:44:11 -08001#ifndef CHRONOCHAT_TLV_HPP
2#define CHRONOCHAT_TLV_HPP
3
4namespace chronochat {
5
6namespace tlv {
7
8enum {
9 ChatroomInfo = 128,
10 ChatroomName = 129,
11 TrustModel = 130,
12 ChatroomPrefix = 131,
13 ManagerPrefix = 132,
14 Participants = 133,
15 Conf = 134,
16 Nick = 135,
17 Profile = 136,
18 ProfileEntry = 137,
19 Oid = 138,
20 EntryData = 139,
21 EndorseExtension = 140,
22 EndorseCollection = 141,
23 EndorseCollectionEntry = 142,
24 Hash = 143,
25 EndorseInfo = 144,
26 Endorsement = 145,
27 EndorseType = 146,
28 EndorseValue = 147,
29 EndorseCount = 148,
30 ChatMessage = 149,
31 ChatMessageType = 150,
32 ChatData = 151,
33 Timestamp = 152,
34};
35
36} // namespace tlv
37
38} // namespace chronochat
39
40#endif // CHRONOCHAT_TLV_HPP