summaryrefslogtreecommitdiff
path: root/src/node_os.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_os.cc')
-rw-r--r--src/node_os.cc13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/node_os.cc b/src/node_os.cc
index 5a40e171ed..6ecfb7fe9f 100644
--- a/src/node_os.cc
+++ b/src/node_os.cc
@@ -68,18 +68,15 @@ using v8::Value;
static void GetHostname(const FunctionCallbackInfo<Value>& args) {
Environment* env = Environment::GetCurrent(args);
char buf[MAXHOSTNAMELEN + 1];
+ size_t size = sizeof(buf);
+ int r = uv_os_gethostname(buf, &size);
- if (gethostname(buf, sizeof(buf))) {
-#ifdef __POSIX__
- int errorno = errno;
-#else // __MINGW32__
- int errorno = WSAGetLastError();
-#endif // __POSIX__
+ if (r != 0) {
CHECK_GE(args.Length(), 1);
- env->CollectExceptionInfo(args[args.Length() - 1], errorno, "gethostname");
+ env->CollectUVExceptionInfo(args[args.Length() - 1], r,
+ "uv_os_gethostname");
return args.GetReturnValue().SetUndefined();
}
- buf[sizeof(buf) - 1] = '\0';
args.GetReturnValue().Set(OneByteString(env->isolate(), buf));
}