Package dpkt :: Module igmp :: Class IGMP
[hide private]
[frames] | no frames]

Class IGMP

source code

object --+        
         |        
   ??.Temp --+    
             |    
   dpkt.Packet --+
                 |
                IGMP

Internet Group Management Protocol.

TODO: Longer class information....

Attributes:
    __hdr__: Header fields of IGMP.
    TODO.

Instance Methods [hide private]
 
__bytes__(self) source code

Inherited from dpkt.Packet: __getitem__, __init__, __len__, __repr__, __str__, pack, pack_hdr, unpack

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Class Variables [hide private]
  __hdr__ = (('type', 'B', 0), ('maxresp', 'B', 0), ('sum', 'H',...
  __hdr_defaults__ = {'group': 0, 'maxresp': 0, 'sum': 0, 'type'...
  __hdr_fields__ = ['type', 'maxresp', 'sum', 'group']
  __hdr_fmt__ = '>BBHI'
  __hdr_len__ = 8
Properties [hide private]
  data
  group
  maxresp
  sum
  type

Inherited from object: __class__

Method Details [hide private]

__bytes__(self)

source code 
Overrides: dpkt.Packet.__bytes__

Class Variable Details [hide private]

__hdr__

Value:
(('type', 'B', 0),
 ('maxresp', 'B', 0),
 ('sum', 'H', 0),
 ('group', 'I', 0))

__hdr_defaults__

Value:
{'group': 0, 'maxresp': 0, 'sum': 0, 'type': 0}