| 683 | |
| 684 | |
| 685 | class TLS_Ext_RenegotiationInfo(TLS_Ext_Unknown): # RFC 5746 |
| 686 | name = "TLS Extension - Renegotiation Indication" |
| 687 | fields_desc = [ShortEnumField("type", 0xff01, _tls_ext), |
| 688 | MayEnd(ShortField("len", None)), |
| 689 | FieldLenField("reneg_conn_len", None, fmt='B', |
| 690 | length_of="renegotiated_connection"), |
| 691 | StrLenField("renegotiated_connection", "", |
| 692 | length_from=lambda pkt: pkt.reneg_conn_len)] |
| 693 | |
| 694 | |
| 695 | class TLS_Ext_RecordSizeLimit(TLS_Ext_Unknown): # RFC 8449 |
no test coverage detected
searching dependent graphs…