Update src/stream_wrap.h

Co-authored-by: Darshan Sen <raisinten@gmail.com>
This commit is contained in:
Momtchil Momtchev 2021-06-21 16:22:48 +02:00 committed by GitHub
parent ae2bff74ac
commit ea8b191f6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -28,9 +28,9 @@
#include "handle_wrap.h"
#include "v8.h"
#define STREAM_WRAP_RECVQ_INITIAL 16*1024
#define STREAM_WRAP_RECVQ_MIN 16*1024
#define STREAM_WRAP_RECVQ_MAX 256*1024
constexpr ssize_t STREAM_WRAP_RECVQ_INITIAL = 16 * 1024;
constexpr ssize_t STREAM_WRAP_RECVQ_MIN = 16 * 1024;
constexpr ssize_t STREAM_WRAP_RECVQ_MAX = 256 * 1024;
namespace node {