aboutsummaryrefslogtreecommitdiff
path: root/schema/packet_event_schema.json
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2022-01-31 20:38:58 +0100
committerToni Uhlig <matzeton@googlemail.com>2022-01-31 20:54:02 +0100
commit1a0d7ddbfaccc20e081a2fcd0a27495c166e1dbe (patch)
tree05195d13f935abf90f48b06a381c0a847d55fc18 /schema/packet_event_schema.json
parent7022d0b1c57b4b6233fc2bd89d03328a5f90208e (diff)
Process additional layer 3 protocols.
* bump libnDPI to c53c82d4823b5a8f856d1375155ac5112b68e8af * run_tests.sh: improved execution from non-git directories e.g. via `make dist` * updated JSON schema to be more restrictive * nDPId: splitted generic get_ip_from_sockaddr into IPv4/IPv6 to prevent compiler warnings on some platforms Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'schema/packet_event_schema.json')
-rw-r--r--schema/packet_event_schema.json7
1 files changed, 5 insertions, 2 deletions
diff --git a/schema/packet_event_schema.json b/schema/packet_event_schema.json
index 0b53ae99c..675c4fb14 100644
--- a/schema/packet_event_schema.json
+++ b/schema/packet_event_schema.json
@@ -16,15 +16,18 @@
"pkt_l4_len",
"ts_msec"
],
+
"dependencies" : {
"flow_id" : [ "flow_packet_id", "flow_last_seen", "flow_idle_time" ]
},
+
"if": {
- "properties": { "packet_event_name": { "const": "packet-flow" } }
+ "properties": { "packet_event_name": { "enum": ["packet-flow"] } }
},
"then": {
- "required": [ "flow_id" ]
+ "required": [ "flow_id", "flow_packet_id", "flow_last_seen", "flow_idle_time" ]
},
+
"properties": {
"alias": {
"type": "string"