diff options
author | aouinizied <aouinizied@gmail.com> | 2020-07-13 12:48:35 +0200 |
---|---|---|
committer | aouinizied <aouinizied@gmail.com> | 2020-07-13 12:48:35 +0200 |
commit | e2e030309924a8242aa06876814e8b21ad2be536 (patch) | |
tree | deed617afe6bf8096cee905771e4b32e7253b441 /python/ndpi.py | |
parent | 802254327a71cc3103784579911db86b12d3918e (diff) |
Add ssl_version_str to flow structure.
Diffstat (limited to 'python/ndpi.py')
-rw-r--r-- | python/ndpi.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/ndpi.py b/python/ndpi.py index 365fdeadf..31abe53dc 100644 --- a/python/ndpi.py +++ b/python/ndpi.py @@ -1076,6 +1076,7 @@ struct ndpi_flow_struct { struct { struct { + char ssl_version_str[12]; uint16_t ssl_version, server_names_len; char client_requested_server_name[64], *server_names, *alpn, *tls_supported_versions, *issuerDN, *subjectDN; @@ -1434,4 +1435,4 @@ class NDPI(): def ndpi_exit_detection_module(self): """ Exit function for nDPI module """ self._ndpi.ndpi_exit_detection_module(self._mod) - self._ffi.dlclose(self._ndpi)
\ No newline at end of file + self._ffi.dlclose(self._ndpi) |