diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-09-06 14:50:46 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2022-09-06 14:50:46 +0200 |
commit | f9bd7d29ced8e596aeaab2258bc7f56f14521a2e (patch) | |
tree | ddd578b6edcaa2a80847433522f2f32197191622 /schema | |
parent | c5c7d83c97620c9bae7939b21d46a1458291ebf6 (diff) |
Bump libnDPI to 37f918322c0a489b5143a987c8f1a44a6f78a6f3 and updated flow json schema file.
* export env vars AR / CMAKE_C_COMPILER_AR and RANLIB / CMAKE_C_COMPILER_RANLIB while building libnDPI
* nDPId check API version during startup (macro vs. function call) and print a warning if they are different
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'schema')
-rw-r--r-- | schema/flow_event_schema.json | 201 |
1 files changed, 118 insertions, 83 deletions
diff --git a/schema/flow_event_schema.json b/schema/flow_event_schema.json index 8724ecfd2..649e21891 100644 --- a/schema/flow_event_schema.json +++ b/schema/flow_event_schema.json @@ -208,91 +208,126 @@ }, "ndpi": { "type": "object", - "required": [ "proto", "breed" ], + "required": [ "proto", "proto_id", "breed", "encrypted" ], - "if": { - "properties": { "proto": { "enum": [ "Unknown", "Skype_Teams" ] } } - }, - "then": { - "return": true - }, - "else": { - "required": [ "category", "confidence" ] - }, - - "proto": { - "type": "string" - }, - "category": { - "type": "string" - }, - "breed": { - "type": "string" - }, - "flow_risk": { - "type": "object" + "properties": { + "proto": { + "type": "string" + }, + "proto_id": { + "type": "string" + }, + "category": { + "type": "string" + }, + "category_id": { + "type": "number" + }, + "encrypted": { + "type": "number", + "enum": [ + 0, + 1 + ] + }, + "breed": { + "type": "string" + }, + "flow_risk": { + "type": "object" + }, + "confidence": { + "type": "object", + "properties": { + "0": { + "type": "string" + }, + "1": { + "type": "string" + }, + "2": { + "type": "string" + }, + "3": { + "type": "string" + }, + "4": { + "type": "string" + }, + "5": { + "type": "string" + }, + "6": { + "type": "string" + } + }, + "additionalProperties": false + }, + "entropy": { + "type": "number" + }, + "hostname": { + "type": "string" + }, + "dhcp": { + "type": "object" + }, + "discord": { + "type": "object" + }, + "bittorrent": { + "type": "object" + }, + "mdns": { + "type": "object" + }, + "ntp": { + "type": "object" + }, + "ubntac2": { + "type": "object" + }, + "kerberos": { + "type": "object" + }, + "telnet": { + "type": "object" + }, + "tls": { + "type": "object" + }, + "quic": { + "type": "object" + }, + "imap": { + "type": "object" + }, + "http": { + "type": "object" + }, + "pop": { + "type": "object" + }, + "smtp": { + "type": "object" + }, + "dns": { + "type": "object" + }, + "ftp": { + "type": "object" + }, + "ssh": { + "type": "object" + }, + "stun": { + "type": "object" + }, + "softether": { + "type": "object" + } }, - "confidence": { - "type": "string", - "enum": [ - "0", - "1", - "2", - "3", - "4" - ] - } - }, - "entropy": { - "type": "number" - }, - "dhcp": { - "type": "object" - }, - "bittorrent": { - "type": "object" - }, - "mdns": { - "type": "object" - }, - "ntp": { - "type": "object" - }, - "ubntac2": { - "type": "object" - }, - "kerberos": { - "type": "object" - }, - "telnet": { - "type": "object" - }, - "tls": { - "type": "object" - }, - "quic": { - "type": "object" - }, - "imap": { - "type": "object" - }, - "http": { - "type": "object" - }, - "pop": { - "type": "object" - }, - "smtp": { - "type": "object" - }, - "dns": { - "type": "object" - }, - "ftp": { - "type": "object" - }, - "ssh": { - "type": "object" + "additionalProperties": false } }, "additionalProperties": false |