Package dpkt :: Module rpc :: Class RPC :: Class Call
[hide private]
[frames] | no frames]

Class Call

source code

 object --+    
          |    
dpkt.Packet --+
              |
             RPC.Call

Nested Classes [hide private]

Inherited from dpkt.Packet: __metaclass__

Instance Methods [hide private]
 
unpack(self, buf)
Unpack packet header fields from buf, and set self.data.
source code
 
__len__(self) source code
 
__str__(self)
str(x)
source code

Inherited from dpkt.Packet: __getitem__, __init__, __repr__, pack, pack_hdr

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__

Class Variables [hide private]
  __hdr__ = (('rpcvers', 'I', 2), ('prog', 'I', 0), ('vers', 'I'...
  __hdr_defaults__ = {'proc': 0, 'prog': 0, 'rpcvers': 2, 'vers'...
  __hdr_fields__ = ['rpcvers', 'prog', 'vers', 'proc']
  __hdr_fmt__ = '>IIII'
  __hdr_len__ = 16
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

unpack(self, buf)

source code 
Unpack packet header fields from buf, and set self.data.

Overrides: dpkt.Packet.unpack
(inherited documentation)

__len__(self)
(Length operator)

source code 
Overrides: dpkt.Packet.__len__

__str__(self)
(Informal representation operator)

source code 
str(x)

Overrides: object.__str__
(inherited documentation)

Class Variable Details [hide private]

__hdr__

Value:
(('rpcvers', 'I', 2),
 ('prog', 'I', 0),
 ('vers', 'I', 0),
 ('proc', 'I', 0))

__hdr_defaults__

Value:
{'proc': 0, 'prog': 0, 'rpcvers': 2, 'vers': 0}