Skip to content

Commit dfb9b5e

Browse files
danbevMylesBorins
authored andcommitted
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: #17606 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent cc683bd commit dfb9b5e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/node_crypto.cc

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
#include "node_crypto.h"
2626
#include "node_crypto_bio.h"
2727
#include "node_crypto_groups.h"
28+
#include "node_crypto_clienthello-inl.h"
2829
#include "node_mutex.h"
2930
#include "tls_wrap.h" // TLSWrap
3031

src/node_crypto.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include "node.h"
2828
// ClientHelloParser
29-
#include "node_crypto_clienthello-inl.h"
29+
#include "node_crypto_clienthello.h"
3030

3131
#include "node_buffer.h"
3232

0 commit comments

Comments
 (0)