diff options
Diffstat (limited to 'resources/libraries')
-rwxr-xr-x | resources/libraries/bash/entry/patch_l3fwd_flip_routes | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/resources/libraries/bash/entry/patch_l3fwd_flip_routes b/resources/libraries/bash/entry/patch_l3fwd_flip_routes index e0b204eb9c..c1fb0d93b3 100755 --- a/resources/libraries/bash/entry/patch_l3fwd_flip_routes +++ b/resources/libraries/bash/entry/patch_l3fwd_flip_routes @@ -2,9 +2,9 @@ patch --ignore-whitespace l3fwd_lpm.c <<"_EOF" 44,45c44,45 -< {IPv4(1, 1, 1, 0), 24, 0}, -< {IPv4(2, 1, 1, 0), 24, 1}, +< {RTE_IPV4(198, 18, 0, 0), 24, 0}, +< {RTE_IPV4(198, 18, 1, 0), 24, 1}, --- -> {IPv4(1, 1, 1, 0), 24, 1}, -> {IPv4(2, 1, 1, 0), 24, 0}, +> {RTE_IPV4(198, 18, 0, 0), 24, 1}, +> {RTE_IPV4(198, 18, 1, 0), 24, 0}, _EOF |