Package dpkt :: Module aim :: Class SNAC
[hide private]
[frames] | no frames]

Class SNAC

source code

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

Simple Network Atomic Communication.

See more about the SNAC on     https://en.wikipedia.org/wiki/OSCAR_protocol#SNAC_data

Attributes:
    __hdr__: Header fields of SNAC.

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__ = (('family', 'H', 0), ('subtype', 'H', 0), ('flags', ...
  __hdr_defaults__ = {'family': 0, 'flags': 0, 'reqid': 0, 'subt...
  __hdr_fields__ = ['family', 'subtype', 'flags', 'reqid']
  __hdr_fmt__ = '>HHHI'
  __hdr_len__ = 10
Properties [hide private]
  data
  family
  flags
  reqid
  subtype

Inherited from object: __class__

Class Variable Details [hide private]

__hdr__

Value:
(('family', 'H', 0),
 ('subtype', 'H', 0),
 ('flags', 'H', 0),
 ('reqid', 'I', 0))

__hdr_defaults__

Value:
{'family': 0, 'flags': 0, 'reqid': 0, 'subtype': 0}