packet.application.gss (3) Linux Manual Page
packet.application.gss – GSS module
Description
Decode GSS layers.
NOTE:
Classes
class GSS(baseobj.BaseObj)
GSS Data object This is a base object and should not be instantiated. It gives the following methods: # Decode data preceding the RPC payload when flavor is RPCSEC_GSS x.decode_gss_data() # Decode data following the RPC payload when flavor is RPCSEC_GSS x.decode_gss_checksum() Methods defined here: --------------------- decode_gss_checksum(self) Decode GSS checksum decode_gss_data(self) Decode GSS data
class GSS_Checksum(baseobj.BaseObj)
GSS Checksum object This object is the representation of the data following the RPC payload when flavor is RPCSEC_GSS. Methods defined here: --------------------- __str__(self) String representation of object The representation depends on the verbose level set by debug_repr(). If set to 0 the generic object representation is returned. If set to 1 the representation of the object is: 'GSSC token: 0x602306092a864886f71201020201010000...' If set to 2 the representation of the object is as follows: 'token: 0x602306092a864886f71201020201010000...'
class GSS_Data(baseobj.BaseObj)
GSS Data object This object is the representation of the data preceding the RPC payload when flavor is RPCSEC_GSS. Methods defined here: --------------------- __str__(self) String representation of object The representation depends on the verbose level set by debug_repr(). If set to 0 the generic object representation is returned. If set to 1 the representation of the object is: 'GSSD length: 176, seq_num: 1' If set to 2 the representation of the object is as follows: 'length: 176, seq_num: 1'
See Also
baseobj(3)
Bugs
No known bugs.
Author
Jorge Mora (mora [at] netapp.com)
