Commit 355bf7f2 authored by Boaz Brickner's avatar Boaz Brickner

Wireshark 1.12.8

parent 9872b0bd
...@@ -53,6 +53,7 @@ namespace PcapDotNet.Core.Test ...@@ -53,6 +53,7 @@ namespace PcapDotNet.Core.Test
IpV4Protocol.Ax25, // TODO: Support Ax25. IpV4Protocol.Ax25, // TODO: Support Ax25.
IpV4Protocol.FibreChannel, // TODO: Support FibreChannel. IpV4Protocol.FibreChannel, // TODO: Support FibreChannel.
IpV4Protocol.MultiprotocolLabelSwitchingInIp, // TODO: Support MPLS. IpV4Protocol.MultiprotocolLabelSwitchingInIp, // TODO: Support MPLS.
IpV4Protocol.EtherIp, // TODO: Support EtherIP.
}.Contains(icmpIpV4PayloadDatagram.IpV4.Protocol)) }.Contains(icmpIpV4PayloadDatagram.IpV4.Protocol))
{ {
if (icmpIpV4PayloadDatagram.IpV4.Protocol == IpV4Protocol.Udp) if (icmpIpV4PayloadDatagram.IpV4.Protocol == IpV4Protocol.Udp)
......
...@@ -120,7 +120,8 @@ namespace PcapDotNet.Core.Test ...@@ -120,7 +120,8 @@ namespace PcapDotNet.Core.Test
break; break;
case "igmp.reply.pending": case "igmp.reply.pending":
field.AssertShowDecimal(igmpDatagram.RetryInThisManySeconds); if (igmpDatagram.MessageType != IgmpMessageType.None)
field.AssertShowDecimal(igmpDatagram.RetryInThisManySeconds);
break; break;
case "igmp.group_type": case "igmp.group_type":
......
...@@ -187,8 +187,11 @@ namespace PcapDotNet.Core.Test ...@@ -187,8 +187,11 @@ namespace PcapDotNet.Core.Test
headerField.AssertNumFields(1); headerField.AssertNumFields(1);
headerField.Fields().First().AssertName("_ws.expert"); headerField.Fields().First().AssertName("_ws.expert");
} }
// TODO: Uncomment when https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=10560 is fixed. // TODO: Remove this condition when https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=11803 is fixed.
// headerField.AssertShowDecimal(routingProtocolLowPowerAndLossyNetworks.Addresses.Count); if (routingProtocolLowPowerAndLossyNetworks.Addresses.Count > 0)
{
headerField.AssertShowDecimal(routingProtocolLowPowerAndLossyNetworks.Addresses.Count);
}
break; break;
case "ipv6.routing_hdr.rpl.address": case "ipv6.routing_hdr.rpl.address":
......
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