Home | Trees | Indices | Help |
|
---|
|
1 # $Id: igmp.py 23 2006-11-08 15:45:33Z dugsong $ 2 # -*- coding: utf-8 -*- 3 """Internet Group Management Protocol.""" 4 from __future__ import absolute_import 5 6 from . import dpkt 7 810 """Internet Group Management Protocol. 11 12 TODO: Longer class information.... 13 14 Attributes: 15 __hdr__: Header fields of IGMP. 16 TODO. 17 """ 18 19 __hdr__ = ( 20 ('type', 'B', 0), 21 ('maxresp', 'B', 0), 22 ('sum', 'H', 0), 23 ('group', 'I', 0) 24 ) 2530
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Apr 29 23:17:55 2019 | http://epydoc.sourceforge.net |