Added the meta field to Packet to support Packet's metadata

This commit is contained in:
Kayne Ruse
2013-06-17 18:37:18 +10:00
parent 68ec7323a3
commit 27ed91688a
5 changed files with 38 additions and 26 deletions
+2 -2
View File
@@ -4,8 +4,8 @@
using namespace std;
int main() {
int main(int, char**) {
Packet p;
cout << int(p.type) << endl;
cout << int(p.meta.type) << endl;
return 0;
}