We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acfbed2 commit 7c058baCopy full SHA for 7c058ba
src/cbor/CBOR.h
@@ -0,0 +1,15 @@
1
+#pragma once
2
+
3
+typedef uint64_t CBORTag;
4
5
+namespace cbor {
6
+ namespace tag {
7
+ enum : CBORTag {
8
+ // Unknown Command Tag https://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml
9
+ CBORUnknownCmdTag16b = 0xffff, // invalid tag
10
+ CBORUnknownCmdTag32b = 0xffffffff, // invalid tag
11
+ CBORUnknownCmdTag64b = 0xffffffffffffffff, // invalid tag
12
+ CBORUnknownCmdTag = CBORUnknownCmdTag32b
13
+ };
14
+ }
15
+}
0 commit comments