/*
This file is part of PacketDotNet
PacketDotNet is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PacketDotNet is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with PacketDotNet. If not, see .
*/
/*
* Copyright 2009 Chris Morgan
*/
namespace PacketDotNet
{
///
/// ICMP protocol field encoding information.
/// See http://en.wikipedia.org/wiki/ICMPv6
///
public class ICMPv6Fields
{
/// Length of the ICMP message type code in bytes.
public readonly static int TypeLength = 1;
/// Length of the ICMP subcode in bytes.
public readonly static int CodeLength = 1;
/// Length of the ICMP header checksum in bytes.
public readonly static int ChecksumLength = 2;
/// Position of the ICMP message type.
public readonly static int TypePosition = 0;
/// Position of the ICMP message subcode.
public readonly static int CodePosition;
/// Position of the ICMP header checksum.
public readonly static int ChecksumPosition;
/// Length in bytes of an ICMP header.
public readonly static int HeaderLength; // == 4
static ICMPv6Fields()
{
CodePosition = TypePosition + TypeLength;
ChecksumPosition = CodePosition + CodeLength;
HeaderLength = ChecksumPosition + ChecksumLength;
}
}
}