/*
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
{
/// IGMP protocol field encoding information.
public class IGMPv2Fields
{
/// Length of the IGMP message type code in bytes.
public readonly static int TypeLength = 1;
/// Length of the IGMP max response code in bytes.
public readonly static int MaxResponseTimeLength = 1;
/// Length of the IGMP header checksum in bytes.
public readonly static int ChecksumLength = 2;
/// Length of group address in bytes.
public readonly static int GroupAddressLength;
/// Position of the IGMP message type.
public readonly static int TypePosition = 0;
/// Position of the IGMP max response code.
public readonly static int MaxResponseTimePosition;
/// Position of the IGMP header checksum.
public readonly static int ChecksumPosition;
/// Position of the IGMP group address.
public readonly static int GroupAddressPosition;
/// Length in bytes of an IGMP header.
public readonly static int HeaderLength; // 8
static IGMPv2Fields()
{
GroupAddressLength = IPv4Fields.AddressLength;
MaxResponseTimePosition = TypePosition + TypeLength;
ChecksumPosition = MaxResponseTimePosition + MaxResponseTimeLength;
GroupAddressPosition = ChecksumPosition + ChecksumLength;
HeaderLength = GroupAddressPosition + GroupAddressLength;
}
}
}