/// ************************************************************************ /// Copyright (C) 2001, Patrick Charles and Jonas Lehmann * /// Distributed under the Mozilla Public License * /// http://www.mozilla.org/NPL/MPL-1.1.txt * /// ************************************************************************* /// namespace SharpPcap.Packets { /// Code constants for IGMP message types. /// /// From RFC #2236. /// /// public struct IGMPMessages_Fields{ /// membership query. public readonly static int QUERY = 0x11; /// v1 membership report. public readonly static int V1_REPORT = 0x12; /// v2 membership report. public readonly static int V2_REPORT = 0x16; /// Leave group. public readonly static int LEAVE = 0x17; } public interface IGMPMessages { //UPGRADE_NOTE: Members of interface 'IGMPMessages' were extracted into structure 'IGMPMessages_Fields'. "ms-help://MS.VSCC.v80/dv_commoner/local/redirect.htm?index='!DefaultContextWindowIndex'&keyword='jlca1045'" } }