diff options
author | Takeru Hayasaka <hayatake396@gmail.com> | 2023-01-17 04:45:58 +0900 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2023-03-31 06:04:42 +0000 |
commit | b23c6f4f29b53afa6be2735b30b08fcb115f20cc (patch) | |
tree | 59cca6452dca4b17fbce112ca8f4e5b3004565b7 /src/vnet/ip/ip_test.c | |
parent | 55686e1c59f8bcf399f5ff58b3ca1030a415009c (diff) |
ip: support flow-hash gtpv1teid
support with GTPv1 TEID added to the flow hash.
This can able to ECMP to PGW and parallelization.
Type: feature
Change-Id: I6f758579027caf6123831ef2db7afe17e424a6eb
Signed-off-by: Takeru Hayasaka <hayatake396@gmail.com>
Diffstat (limited to 'src/vnet/ip/ip_test.c')
-rw-r--r-- | src/vnet/ip/ip_test.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vnet/ip/ip_test.c b/src/vnet/ip/ip_test.c index 7c994868d87..727afba67f4 100644 --- a/src/vnet/ip/ip_test.c +++ b/src/vnet/ip/ip_test.c @@ -1277,6 +1277,12 @@ api_set_ip_flow_hash_v2 (vat_main_t *vat) } static int +api_set_ip_flow_hash_v3 (vat_main_t *vat) +{ + return -1; +} + +static int api_ip_mroute_add_del (vat_main_t *vam) { unformat_input_t *i = vam->input; |