From 2a4a5a2c8ae21f2bcf7e81b5eafea91d799ee88a Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Wed, 29 Aug 2018 16:23:22 +0200 Subject: JSON: Make meta statement/expression extensible Lessons learned from fwd statement: We must not assume a given statement/expression may not receive further properties in the future. Therefore make meta value an object with a property "key" instead of just a string containing the key name. Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- tests/py/ip/dnat.t.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'tests/py/ip/dnat.t.json') diff --git a/tests/py/ip/dnat.t.json b/tests/py/ip/dnat.t.json index 56f8272f..f0140305 100644 --- a/tests/py/ip/dnat.t.json +++ b/tests/py/ip/dnat.t.json @@ -3,7 +3,7 @@ { "match": { "left": { - "meta": "iifname" + "meta": { "key": "iifname" } }, "right": "eth0" } @@ -33,7 +33,7 @@ { "match": { "left": { - "meta": "iifname" + "meta": { "key": "iifname" } }, "right": "eth0" } @@ -64,7 +64,7 @@ { "match": { "left": { - "meta": "iifname" + "meta": { "key": "iifname" } }, "right": "eth0" } @@ -98,7 +98,7 @@ { "match": { "left": { - "meta": "iifname" + "meta": { "key": "iifname" } }, "right": "eth0" } @@ -133,7 +133,7 @@ { "match": { "left": { - "meta": "iifname" + "meta": { "key": "iifname" } }, "right": "eth0" } @@ -164,7 +164,7 @@ { "match": { "left": { - "meta": "iifname" + "meta": { "key": "iifname" } }, "right": "eth0" } -- cgit v1.2.3