| 823 | ############################################################################### |
| 824 | |
| 825 | class TLSApplicationData(_GenericTLSSessionInheritance): |
| 826 | name = "TLS Application Data" |
| 827 | fields_desc = [StrField("data", "")] |
| 828 | |
| 829 | def post_dissection_tls_session_update(self, msg_str): |
| 830 | pass |
| 831 | |
| 832 | def post_build_tls_session_update(self, msg_str): |
| 833 | pass |
| 834 | |
| 835 | |
| 836 | ############################################################################### |
no test coverage detected
searching dependent graphs…