diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-10-29 14:37:06 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-10-31 13:53:02 +0100 |
commit | d55e39792970234b0b07582378cc3ec07ab62bf3 (patch) | |
tree | db067f18ef90aecf1d000611ef4f1f3ea3b476c2 /examples/py-flow-info/flow-info.py | |
parent | d3f99f21e6ab7c13286af5f37dafbe9cd76f2fad (diff) |
bump libnDPI to db9f6ec1b4018164e5bff05f115dc60711bb711b
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'examples/py-flow-info/flow-info.py')
-rwxr-xr-x | examples/py-flow-info/flow-info.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/py-flow-info/flow-info.py b/examples/py-flow-info/flow-info.py index 1d3226553..d9354e7ad 100755 --- a/examples/py-flow-info/flow-info.py +++ b/examples/py-flow-info/flow-info.py @@ -314,6 +314,9 @@ def onJsonLineRecvd(json_dict, instance, current_flow, global_user_data): if 'proto' in json_dict['ndpi']: ndpi_proto_categ_breed += '[' + str(json_dict['ndpi']['proto']) + ']' + if 'proto_by_ip' in json_dict['ndpi']: + ndpi_proto_categ_breed += '[' + str(json_dict['ndpi']['proto_by_ip']) + ']' + if 'category' in json_dict['ndpi']: ndpi_proto_categ_breed += '[' + str(json_dict['ndpi']['category']) + ']' |