Code Review
/
vpp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
a641763
)
packetforge: fix order of dst/src address of mac
82/38182/2
author
Ting Xu
<
[email protected]
>
Wed, 18 Jan 2023 04:22:00 +0000
(
04:22
+0000)
committer
Dave Wallace
<
[email protected]
>
Wed, 8 Feb 2023 02:21:01 +0000
(
02:21
+0000)
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 <
[email protected]
>
Change-Id: I039accc0a881eef12f13c75c5becf8b7df97d525
(cherry picked from commit
02bdd3f5cb0f2ff4988f972f31fb44da89fd786e
)
extras/packetforge/parsegraph/nodes/mac.json
patch
|
blob
|
history
diff --git
a/extras/packetforge/parsegraph/nodes/mac.json
b/extras/packetforge/parsegraph/nodes/mac.json
index
6fc4909
..
fab690b
100644
(file)
--- 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"