From 02bdd3f5cb0f2ff4988f972f31fb44da89fd786e Mon Sep 17 00:00:00 2001 From: Ting Xu Date: Wed, 18 Jan 2023 04:22:00 +0000 Subject: packetforge: fix order of dst/src address of mac In the defination of mac node, the order of dst and src address is reversed. Swap their order in this patch. Type: fix Signed-off-by: Ting Xu Change-Id: I039accc0a881eef12f13c75c5becf8b7df97d525 --- extras/packetforge/parsegraph/nodes/mac.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/packetforge/parsegraph/nodes/mac.json b/extras/packetforge/parsegraph/nodes/mac.json index 6fc49096889..fab690b559d 100644 --- a/extras/packetforge/parsegraph/nodes/mac.json +++ b/extras/packetforge/parsegraph/nodes/mac.json @@ -3,13 +3,13 @@ "name" : "mac", "layout" : [ { - "name" : "src", + "name" : "dst", "size" : "48", "format" : "mac", "default" : "00:00:00:00:00:01" }, { - "name" : "dst", + "name" : "src", "size" : "48", "format" : "mac", "default" : "00:00:00:00:00:02" -- cgit 1.2.3-korg