X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Ftlsopenssl%2Ftls_openssl.c;h=6d0364c3acb696f8068f899d5b775698da87ce59;hb=05aceacc38d1988c0651829d4733feb4745b427e;hp=f25ac9f580d460a4fc052615f542f66903cf3b71;hpb=695b0e0b3d8db6bbc4c6bd77095133b02813df06;p=vpp.git diff --git a/src/plugins/tlsopenssl/tls_openssl.c b/src/plugins/tlsopenssl/tls_openssl.c index f25ac9f580d..6d0364c3acb 100644 --- a/src/plugins/tlsopenssl/tls_openssl.c +++ b/src/plugins/tlsopenssl/tls_openssl.c @@ -416,7 +416,7 @@ static inline int openssl_ctx_write (tls_ctx_t * ctx, session_t * app_session) { openssl_ctx_t *oc = (openssl_ctx_t *) ctx; - int wrote = 0, read, max_buf = 100 * TLS_CHUNK_SIZE, max_space; + int wrote = 0, read, max_buf = 4 * TLS_CHUNK_SIZE, max_space; u32 deq_max, to_write; session_t *tls_session; svm_fifo_t *f; @@ -472,7 +472,7 @@ check_tls_fifo: static inline int openssl_ctx_read (tls_ctx_t * ctx, session_t * tls_session) { - int read, wrote = 0, max_space, max_buf = 100 * TLS_CHUNK_SIZE; + int read, wrote = 0, max_space, max_buf = 4 * TLS_CHUNK_SIZE; openssl_ctx_t *oc = (openssl_ctx_t *) ctx; u32 deq_max, to_write; session_t *app_session;