Package dpkt :: Module esp
[hide private]
[frames] | no frames]

Source Code for Module dpkt.esp

 1  # $Id: esp.py 23 2006-11-08 15:45:33Z dugsong $ 
 2  # -*- coding: utf-8 -*- 
 3  """Encapsulated Security Protocol.""" 
 4  from __future__ import absolute_import 
 5   
 6  from . import dpkt 
 7   
 8   
9 -class ESP(dpkt.Packet):
10 """Encapsulated Security Protocol. 11 12 TODO: Longer class information.... 13 14 Attributes: 15 __hdr__: Header fields of ESP. 16 TODO. 17 """ 18 19 __hdr__ = ( 20 ('spi', 'I', 0), 21 ('seq', 'I', 0) 22 )
23