Home | Trees | Indices | Help |
|
---|
|
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 810 """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
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Apr 29 23:17:55 2019 | http://epydoc.sourceforge.net |