From 47edfd9c3c80ba70e0633d755c6aed111a3569d6 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 11 Dec 2017 12:36:26 +0100 Subject: [PATCH] crypto: move node_crypto_clienthello-inl.h to cc This commit updates node_crypto.h to just include node_crypto_clienthello.h instead of the inline header. Also node_crypto.cc is updated to include node_crypto_clienthello-inl.h. PR-URL: https://github.com/nodejs/node/pull/17606 Reviewed-By: Ben Noordhuis Reviewed-By: James M Snell --- src/node_crypto.cc | 1 + src/node_crypto.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/node_crypto.cc b/src/node_crypto.cc index 8d5efe4d6b426b..614c1067c6cc1b 100644 --- a/src/node_crypto.cc +++ b/src/node_crypto.cc @@ -25,6 +25,7 @@ #include "node_crypto.h" #include "node_crypto_bio.h" #include "node_crypto_groups.h" +#include "node_crypto_clienthello-inl.h" #include "node_mutex.h" #include "tls_wrap.h" // TLSWrap diff --git a/src/node_crypto.h b/src/node_crypto.h index 7d8c9032c65285..636cbb99d4dde6 100644 --- a/src/node_crypto.h +++ b/src/node_crypto.h @@ -26,7 +26,7 @@ #include "node.h" // ClientHelloParser -#include "node_crypto_clienthello-inl.h" +#include "node_crypto_clienthello.h" #include "node_buffer.h"