Skip to content
This repository has been archived by the owner on Jul 6, 2018. It is now read-only.

Commit

Permalink
src: make node-http2-core files consistent
Browse files Browse the repository at this point in the history
This might be an incorrect change but the naming looks to be a little
different for these files and wanted to bring it up. Feel free to close
if this is indeed correct.

PR-URL: #74
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
danbev authored and jasnell committed May 7, 2017
1 parent 4038ea0 commit 128fe84
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions node.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@
'src/node_contextify.cc',
'src/node_debug_options.cc',
'src/node_file.cc',
'src/node-http2-core.cc',
'src/node_http2_core.cc',
'src/node_http2.cc',
'src/node_http_parser.cc',
'src/node_main.cc',
Expand Down Expand Up @@ -223,8 +223,8 @@
'src/handle_wrap.h',
'src/js_stream.h',
'src/node.h',
'src/node-http2-core.h',
'src/node-http2-core-inl.h',
'src/node_http2_core.h',
'src/node_http2_core-inl.h',
'src/node_buffer.h',
'src/node_constants.h',
'src/node_debug_options.h',
Expand Down
4 changes: 2 additions & 2 deletions src/node_http2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#include "node_buffer.h"
#include "nghttp2/nghttp2.h"
#include "node_http2.h"
#include "node-http2-core.h"
#include "node-http2-core-inl.h"
#include "node_http2_core.h"
#include "node_http2_core-inl.h"
#include "stream_base.h"
#include "stream_base-inl.h"
#include "string_bytes.h"
Expand Down
4 changes: 2 additions & 2 deletions src/node_http2.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#include "nghttp2/nghttp2.h"
#include "uv.h"

#include "node-http2-core.h"
#include "node-http2-core-inl.h"
#include "node_http2_core.h"
#include "node_http2_core-inl.h"
#include "env.h"
#include "env-inl.h"
#include "node_crypto_bio.h"
Expand Down
2 changes: 1 addition & 1 deletion src/node-http2-core-inl.h → src/node_http2_core-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS

#include "node-http2-core.h"
#include "node_http2_core.h"
#include "node_internals.h" // arraysize
#include "util.h"
#include "util-inl.h"
Expand Down
4 changes: 2 additions & 2 deletions src/node-http2-core.cc → src/node_http2_core.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "node-http2-core.h"
#include "node-http2-core-inl.h"
#include "node_http2_core.h"
#include "node_http2_core-inl.h"

namespace node {
namespace http2 {
Expand Down
File renamed without changes.

0 comments on commit 128fe84

Please sign in to comment.