summaryrefslogtreecommitdiff
path: root/src/node_http_parser_llhttp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_http_parser_llhttp.cc')
-rw-r--r--src/node_http_parser_llhttp.cc21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/node_http_parser_llhttp.cc b/src/node_http_parser_llhttp.cc
deleted file mode 100644
index 6e1d18d3af..0000000000
--- a/src/node_http_parser_llhttp.cc
+++ /dev/null
@@ -1,21 +0,0 @@
-#define NODE_EXPERIMENTAL_HTTP 1
-
-#include "node_http_parser_impl.h"
-#include "memory_tracker-inl.h"
-#include "node_metadata.h"
-#include "util-inl.h"
-
-namespace node {
-
-namespace per_process {
-const char* const llhttp_version =
- NODE_STRINGIFY(LLHTTP_VERSION_MAJOR)
- "."
- NODE_STRINGIFY(LLHTTP_VERSION_MINOR)
- "."
- NODE_STRINGIFY(LLHTTP_VERSION_PATCH);
-} // namespace per_process
-} // namespace node
-
-NODE_MODULE_CONTEXT_AWARE_INTERNAL(http_parser_llhttp,
- node::InitializeHttpParser)