summaryrefslogtreecommitdiff
path: root/src/tls_wrap.h
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-06-28 09:30:30 +0200
committerDaniel Bevenius <daniel.bevenius@gmail.com>2017-06-30 07:23:25 +0200
commit08109a3ca12ddcd86167aa88e697cfed5923326d (patch)
tree7fa1090f79175ddcd4037f6f65f251bf05467c50 /src/tls_wrap.h
parent93683c616b57dfa76521f184093c0610da7f52c7 (diff)
downloadandroid-node-v8-08109a3ca12ddcd86167aa88e697cfed5923326d.tar.gz
android-node-v8-08109a3ca12ddcd86167aa88e697cfed5923326d.tar.bz2
android-node-v8-08109a3ca12ddcd86167aa88e697cfed5923326d.zip
src: move crypto_bio/clienthello to crypto ns
Currently, node_crypto_bio and node_crypto_clienthello are not in the crypto namespace but simply in the node namespace. Not sure if this was intentional or not, but I think it would make sense to move them to be consistent. PR-URL: https://github.com/nodejs/node/pull/13957 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/tls_wrap.h')
-rw-r--r--src/tls_wrap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls_wrap.h b/src/tls_wrap.h
index 19633ea866..9d559f7a72 100644
--- a/src/tls_wrap.h
+++ b/src/tls_wrap.h
@@ -38,10 +38,10 @@
namespace node {
// Forward-declarations
-class NodeBIO;
class WriteWrap;
namespace crypto {
class SecureContext;
+class NodeBIO;
}
class TLSWrap : public AsyncWrap,
@@ -172,7 +172,7 @@ class TLSWrap : public AsyncWrap,
StreamBase* stream_;
BIO* enc_in_;
BIO* enc_out_;
- NodeBIO* clear_in_;
+ crypto::NodeBIO* clear_in_;
size_t write_size_;
typedef ListHead<WriteItem, &WriteItem::member_> WriteItemList;
WriteItemList write_item_queue_;