Package dpkt :: Module ipx :: Class IPX
[hide private]
[frames] | no frames]

Class IPX

source code

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

Internetwork Packet Exchange.

TODO: Longer class information....

Attributes:
    __hdr__: Header fields of IPX.
    TODO.

Instance Methods [hide private]

Inherited from dpkt.Packet: __bytes__, __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__ = (('sum', 'H', 65535), ('len', 'H', 30), ('tc', 'B', ...
  __hdr_defaults__ = {'dst': '', 'len': 30, 'pt': 0, 'src': '', ...
  __hdr_fields__ = ['sum', 'len', 'tc', 'pt', 'dst', 'src']
  __hdr_fmt__ = '>HHBB12s12s'
  __hdr_len__ = 30
Properties [hide private]
  data
  dst
  len
  pt
  src
  sum
  tc

Inherited from object: __class__

Class Variable Details [hide private]

__hdr__

Value:
(('sum', 'H', 65535),
 ('len', 'H', 30),
 ('tc', 'B', 0),
 ('pt', 'B', 0),
 ('dst', '12s', ''),
 ('src', '12s', ''))

__hdr_defaults__

Value:
{'dst': '', 'len': 30, 'pt': 0, 'src': '', 'sum': 65535, 'tc': 0}