Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/tls_wrap.cc')
-rw-r--r--src/tls_wrap.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tls_wrap.cc b/src/tls_wrap.cc
index 6d9425c040e..92febc15b8e 100644
--- a/src/tls_wrap.cc
+++ b/src/tls_wrap.cc
@@ -511,6 +511,12 @@ const char* TLSCallbacks::Error() {
}
+int TLSCallbacks::TryWrite(uv_buf_t** bufs, size_t* count) {
+ // TODO(indutny): Support it
+ return -1;
+}
+
+
int TLSCallbacks::DoWrite(WriteWrap* w,
uv_buf_t* bufs,
size_t count,