| 97 | |
| 98 | |
| 99 | class _TLSLengthField(ShortField): |
| 100 | def i2repr(self, pkt, x): |
| 101 | s = super(_TLSLengthField, self).i2repr(pkt, x) |
| 102 | if pkt.deciphered_len is not None: |
| 103 | dx = pkt.deciphered_len |
| 104 | ds = super(_TLSLengthField, self).i2repr(pkt, dx) |
| 105 | s += " [deciphered_len= %s]" % ds |
| 106 | return s |
| 107 | |
| 108 | |
| 109 | class _TLSIVField(StrField): |