Home | Trees | Indices | Help |
|
---|
|
1 # $Id: ipx.py 358 2006-04-21 20:11:25Z dugsong $ 2 3 """Internetwork Packet Exchange.""" 4 5 import dpkt 6 7 IPX_HDR_LEN = 30 810 __hdr__ = ( 11 ('sum', 'H', 0xffff), 12 ('len', 'H', IPX_HDR_LEN), 13 ('tc', 'B', 0), 14 ('pt', 'B', 0), 15 ('dst', '12s', ''), 16 ('src', '12s', '') 17 )18
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Dec 4 22:36:06 2009 | http://epydoc.sourceforge.net |