I've been playing around with SharpPcap in order to get a better understanding of packet structure and ran into an odd error when I was running a very basic capture program.
Here is the program
class CaptureTest
{
static void Main(string[] args)
{
ICaptureDevice dev = devices[2];
dev.OnPacketArrival += new PacketArrivalEventHandler(dev_OnPacketArrival);
int readTimeoutMilliseconds = 1000;
dev.Open(DeviceMode.Promiscuous, readTimeoutMilliseconds);
Console.WriteLine("-- Listening on {0}, hit 'Enter' to stop...",
dev.Description);
dev.StartCapture();
Console.ReadLine();
dev.StopCapture();
dev.Close();
}
private static void dev_OnPacketArrival(object sender, CaptureEventArgs e)
{
var packet = e.Packet;
DateTime time = packet.Timeval.Date;
int len = packet.Data.Length;
Console.WriteLine("------------------------");
Console.WriteLine("{0}:{1}:{2},{3} Len={4}",
time.Hour, time.Minute, time.Second, time.Millisecond, len);
var parsedPacket = PacketDotNet.Packet.ParsePacket(packet.LinkLayerType, packet.Data);
Console.WriteLine(parsedPacket);
}
}
As I said, a basic capture program. It simply prings out the time stamp, packet length and basic data from SharpPcap's Packet.ToString() method. However when I ran the program while torrenting mods I recieved the following error while trying to print the packet.
ArgumentOutOfRangeException Specified argument was out of the range of valid types. Parameter name: Type of "135" is not defined in ICMPv6Types
I was wondering if others had encountered anything like this, and if so what they did to get around it. I've been considering implementing a filter to ignore ICMPv6 packets, but I would rather be able to handle them.