diff options
author | Aloys Augustin <aloaugus@cisco.com> | 2019-09-12 18:04:30 +0200 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-09-30 15:24:19 +0000 |
commit | 62042e618a5739906f1e645b4778bd3e09018e08 (patch) | |
tree | d22c27762e7d6ce655fb20d1cf414d282c8f47fd /src | |
parent | b7a6c5633cd3042dbdaf3decfa927d97fef90cb4 (diff) |
hsa: Fix QUIC sessions count calculation
Type: fix
Signed-off-by: Aloys Augustin <aloaugus@cisco.com>
Change-Id: Ia53a41a30920f8af7cd00c6f809b32e7cc277b7a
(cherry picked from commit a786687ab44afe477cef90ca128a82ef0b177c62)
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c b/src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c index 41f9cd9e09c..01812bdf7cb 100644 --- a/src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c +++ b/src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c @@ -454,9 +454,7 @@ quic_echo_set_defaults_after_opts_cb () em->n_connects = em->n_clients; em->n_sessions = - clib_max (1, - eqm->n_stream_clients) * em->n_clients + eqm->n_stream_clients + - 1; + clib_max (1, eqm->n_stream_clients) * em->n_clients + em->n_clients + 1; em->n_clients = eqm->n_stream_clients * em->n_clients; if (em->i_am_master) |