dgramop / libcrafter

Automatically exported from code.google.com/p/libcrafter
0 stars 0 forks source link

GetFlags #17

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. TCP* tcp_layer = sniff_packet->GetLayer<TCP>();
cout << "Flags: " << tcp_layer->GetFlags() << endl;
2.
3.

What is the expected output? What do you see instead?
GetFlags() doesn't produce any output.

What version of the product are you using? On what operating system?
0.2

Please provide any additional information below.

Original issue reported on code.google.com by carlo.pe...@gmail.com on 18 Jan 2015 at 11:15

Attachments:

GoogleCodeExporter commented 8 years ago
Solved.

word flags = tcp_layer->GetFlags();
cout << "Flags: " << flags << endl;

Original comment by carlo.pe...@gmail.com on 18 Jan 2015 at 11:20