Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.