diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-01-27 02:02:16 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-01-27 02:02:16 +0100 |
commit | 42aad33ec83137a95fb45292cf7c4e4300634fa5 (patch) | |
tree | 1dcf595e64572d4e698d868aefdaa7f34df35697 /examples | |
parent | c71284291e58f5e6f4a92013bcdbc94c4afaa9be (diff) |
Revert "Minor fixes."
This reverts commit 58439a676116baffb04a24a59ebae81780528327.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/c-analysed/c-analysed.c | 4 | ||||
-rwxr-xr-x | examples/py-flow-info/flow-info.py | 4 |
2 files changed, 1 insertions, 7 deletions
diff --git a/examples/c-analysed/c-analysed.c b/examples/c-analysed/c-analysed.c index 1a9e56280..e7aa865db 100644 --- a/examples/c-analysed/c-analysed.c +++ b/examples/c-analysed/c-analysed.c @@ -148,7 +148,7 @@ static void csv_buf_add(csv_buf_t buf, size_t * const csv_buf_used, char const * { size_t len; - if (siz_len > 1 && str != NULL) + if (siz_len > 0 && str != NULL) { len = MIN(BUFFER_REMAINING(*csv_buf_used), siz_len); if (len == 0) @@ -564,8 +564,6 @@ static int mainloop(void) int main(int argc, char ** argv) { - init_logging("nDPIsrvd-analysed"); - sock = nDPIsrvd_socket_init(0, 0, 0, 0, simple_json_callback, NULL, NULL); if (sock == NULL) { diff --git a/examples/py-flow-info/flow-info.py b/examples/py-flow-info/flow-info.py index 6f94dbece..c4324ef53 100755 --- a/examples/py-flow-info/flow-info.py +++ b/examples/py-flow-info/flow-info.py @@ -235,10 +235,6 @@ def onFlowCleanup(instance, current_flow, global_user_data): def onJsonLineRecvd(json_dict, instance, current_flow, global_user_data): stats = global_user_data stats.update(json_dict, current_flow) - - if 'packet_event_id' in json_dict: - return True - stats.resetStatus() instance_and_source = '' |