Commit 56c3ebff authored by Brickner_cp's avatar Brickner_cp

Wireshark 1.12.1

parent 569da289
......@@ -28,14 +28,7 @@ namespace PcapDotNet.Core.Test
switch (field.Name())
{
case "tcp.len":
if (tcpDatagram.Payload == null)
{
// todo seems like a bug in tshark https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5235
break;
// field.AssertShowDecimal(tcpDatagram.Length);
}
else
field.AssertShowDecimal(tcpDatagram.Payload.Length);
field.AssertShowDecimal(tcpDatagram.Payload.Length);
field.AssertNoFields();
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment