diff options
author | Florin Coras <fcoras@cisco.com> | 2019-08-15 19:55:03 -0700 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2019-08-16 14:30:25 +0000 |
commit | 4222fb1835e69fac283ef5660bffe354d40f0986 (patch) | |
tree | f5189abfb6dc8b1048e9570b1adaca84ae051db1 /src | |
parent | a5766fe1397103cee73b764181df63fdd68ef040 (diff) |
tcp: fix cc algo name parsing
Type: fix
The initial config parser passed a pointer to the field algo id field in
tcp main. Because the field is a u8 and it was interpreted as a uword,
it ended up overwrting other tcp configuration fields.
Change-Id: Ie9020051c8fca40e14cf42a9888daa87360e5038
Signed-off-by: Florin Coras <fcoras@cisco.com>
(cherry picked from commit d25d364d2bc146d3e17ab7c4d558bcb0ce138b89)
Diffstat (limited to 'src')
-rw-r--r-- | src/vnet/tcp/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp.c b/src/vnet/tcp/tcp.c index 3b94420e639..327703327aa 100644 --- a/src/vnet/tcp/tcp.c +++ b/src/vnet/tcp/tcp.c @@ -1578,7 +1578,7 @@ VLIB_INIT_FUNCTION (tcp_init); uword unformat_tcp_cc_algo (unformat_input_t * input, va_list * va) { - uword *result = va_arg (*va, uword *); + tcp_cc_algorithm_type_e *result = va_arg (*va, tcp_cc_algorithm_type_e *); tcp_main_t *tm = &tcp_main; char *cc_algo_name; u8 found = 0; |