tls: adopt picotls engine to new session scheduling mechanism

Type: fix

Signed-off-by: Simon Zhang <yuwei1.zhang@intel.com>
Change-Id: I58fea0474e293d5e6a029e0dccd4a24b07b76a90
This commit is contained in:
Simon Zhang
2020-04-09 16:35:04 +08:00
committed by Florin Coras
parent 6d7552ca88
commit 6fe7b75f35

View File

@ -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