diff options
author | Florin Coras <fcoras@cisco.com> | 2024-02-26 18:11:43 -0800 |
---|---|---|
committer | Dave Barach <vpp@barachs.net> | 2024-02-27 18:49:20 +0000 |
commit | ea158d64a0aa0673807c74ce00fc854519ba589c (patch) | |
tree | 65deb34e1effc647d943aebb128524b12849026a /src/vnet/tls/tls.h | |
parent | 7c90be5e2963e7852754e963cc92fca0b64c3bb7 (diff) |
tls: pass reset ntf to engines
Type: improvement
Change-Id: Ie042605e50656229874b7a93638f0f04c894410f
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tls/tls.h')
-rw-r--r-- | src/vnet/tls/tls.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/tls/tls.h b/src/vnet/tls/tls.h index f678867e664..f7a3ad02e30 100644 --- a/src/vnet/tls/tls.h +++ b/src/vnet/tls/tls.h @@ -144,6 +144,7 @@ typedef struct tls_engine_vft_ int (*ctx_start_listen) (tls_ctx_t * ctx); int (*ctx_stop_listen) (tls_ctx_t * ctx); int (*ctx_transport_close) (tls_ctx_t * ctx); + int (*ctx_transport_reset) (tls_ctx_t *ctx); int (*ctx_app_close) (tls_ctx_t * ctx); int (*ctx_reinit_cachain) (void); } tls_engine_vft_t; |