Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2018-08-23 16:49:35 +0300
committercjihrig <cjihrig@gmail.com>2018-08-31 16:27:44 +0300
commitc8950cdabc2f8cd0b146797f2045a67974687d5a (patch)
tree30c43426134a4b0030cca0e3e5e12bf9095e5d55 /src/udp_wrap.cc
parent98b5d66629d55a3e0a1a3c4680dbbeba5922bcf2 (diff)
dgram: make process.binding('udp_wrap') internal
PR-URL: https://github.com/nodejs/node/pull/22475 Refs: https://github.com/nodejs/node/issues/22160 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Michaël Zasso <targos@protonmail.com>
Diffstat (limited to 'src/udp_wrap.cc')
-rw-r--r--src/udp_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc
index 9bcf6ceb7b3..d23c62c14ec 100644
--- a/src/udp_wrap.cc
+++ b/src/udp_wrap.cc
@@ -527,4 +527,4 @@ uv_udp_t* UDPWrap::UVHandle() {
} // namespace node
-NODE_BUILTIN_MODULE_CONTEXT_AWARE(udp_wrap, node::UDPWrap::Initialize)
+NODE_MODULE_CONTEXT_AWARE_INTERNAL(udp_wrap, node::UDPWrap::Initialize)