diff options
author | Florin Coras <fcoras@cisco.com> | 2024-03-13 22:03:33 -0700 |
---|---|---|
committer | Dave Barach <vpp@barachs.net> | 2024-03-18 19:20:38 +0000 |
commit | ac60efd523dbbda3952bf4052a5fbeda7cac0a60 (patch) | |
tree | 5e0c5634f32b048ba928136af250956bcf20b324 /src/plugins/tlspicotls | |
parent | dc4d21e9ce78a77caa7abfe997021cd735863e0f (diff) |
tls: handle attepts to renegotiate hs
Type: fix
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I549d0c8715e5c06bfc22be26ca1dc78ec3c29a61
Diffstat (limited to 'src/plugins/tlspicotls')
-rw-r--r-- | src/plugins/tlspicotls/tls_picotls.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/tlspicotls/tls_picotls.c b/src/plugins/tlspicotls/tls_picotls.c index 88b99a48aa1..81c4b2ecf57 100644 --- a/src/plugins/tlspicotls/tls_picotls.c +++ b/src/plugins/tlspicotls/tls_picotls.c @@ -453,6 +453,7 @@ picotls_ctx_read (tls_ctx_t *ctx, session_t *tcp_session) } } + ctx->flags |= TLS_CONN_F_HS_DONE; if (!svm_fifo_max_dequeue (tcp_session->rx_fifo)) return 0; } |