summaryrefslogtreecommitdiff
path: root/src/node_http2.cc
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-06-25 18:46:33 +0200
committerAnna Henningsen <anna@addaleax.net>2018-06-30 15:52:54 +0200
commit64a3fadf7192485197b9695b7bb2165c7e7d762d (patch)
treec226390642b88585eebcb38899e7afb1f2fda75c /src/node_http2.cc
parenta078521a6a9cede03208216d58d5af13e8406cbe (diff)
downloadandroid-node-v8-64a3fadf7192485197b9695b7bb2165c7e7d762d.tar.gz
android-node-v8-64a3fadf7192485197b9695b7bb2165c7e7d762d.tar.bz2
android-node-v8-64a3fadf7192485197b9695b7bb2165c7e7d762d.zip
src: remove StreamBase::kFlagHasWritev
Since libuv 1.21.0, pipes on Windows support `writev` on the libuv side. This allows for some simplification, and makes the `StreamBase` API more uniform (multi-buffer `Write()` is always supported now, including when used by other non-JS consumers like HTTP/2). PR-URL: https://github.com/nodejs/node/pull/21527 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_http2.cc')
-rw-r--r--src/node_http2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_http2.cc b/src/node_http2.cc
index c1ab584134..0251777644 100644
--- a/src/node_http2.cc
+++ b/src/node_http2.cc
@@ -2840,7 +2840,7 @@ void Initialize(Local<Object> target,
env->SetProtoMethod(stream, "rstStream", Http2Stream::RstStream);
env->SetProtoMethod(stream, "refreshState", Http2Stream::RefreshState);
AsyncWrap::AddWrapMethods(env, stream);
- StreamBase::AddMethods<Http2Stream>(env, stream, StreamBase::kFlagHasWritev);
+ StreamBase::AddMethods<Http2Stream>(env, stream);
Local<ObjectTemplate> streamt = stream->InstanceTemplate();
streamt->SetInternalFieldCount(1);
env->set_http2stream_constructor_template(streamt);