Home | Trees | Indices | Help |
|
---|
|
1 # $Id: ipx.py 23 2006-11-08 15:45:33Z 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 Sun Feb 19 21:29:22 2012 | http://epydoc.sourceforge.net |