From: Simon Zhang Date: Thu, 9 Apr 2020 08:35:04 +0000 (+0800) Subject: tls: adopt picotls engine to new session scheduling mechanism X-Git-Tag: v20.09-rc0~233 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=6fe7b75f3503aea950577ab769fdf292f3707256 tls: adopt picotls engine to new session scheduling mechanism Type: fix Signed-off-by: Simon Zhang Change-Id: I58fea0474e293d5e6a029e0dccd4a24b07b76a90 --- diff --git a/src/plugins/tlspicotls/tls_picotls.c b/src/plugins/tlspicotls/tls_picotls.c index a8944bc299a..581814412c6 100644 --- a/src/plugins/tlspicotls/tls_picotls.c +++ b/src/plugins/tlspicotls/tls_picotls.c @@ -437,14 +437,14 @@ picotls_ctx_write (tls_ctx_t * ctx, session_t * app_session, svm_fifo_enqueue (tls_tx_fifo, to_write, TLS_WRITE_OFFSET (ptls_ctx)); if (to_tls_len < 0) { - tls_add_vpp_q_builtin_tx_evt (app_session); + app_session->flags |= SESSION_F_CUSTOM_TX; return 0; } ptls_ctx->write_buffer_offset += to_tls_len; if (TLS_WRITE_IS_LEFT (ptls_ctx)) { - tls_add_vpp_q_builtin_tx_evt (app_session); + app_session->flags |= SESSION_F_CUSTOM_TX; return to_tls_len; } else