summaryrefslogtreecommitdiff
path: root/src/node_os.cc
diff options
context:
space:
mode:
authorFedor Indutny <fedor.indutny@gmail.com>2013-07-31 22:07:29 +0400
committerFedor Indutny <fedor.indutny@gmail.com>2013-07-31 22:12:06 +0400
commit8e29ce9f13f7e4b6c0296325287c05f78ff22ce0 (patch)
treec3420f601d23448e28439bbcd75c6aaf022b5d0c /src/node_os.cc
parent3c6b5d5df1e445d080737e435675e11b102f0126 (diff)
downloadandroid-node-v8-8e29ce9f13f7e4b6c0296325287c05f78ff22ce0.tar.gz
android-node-v8-8e29ce9f13f7e4b6c0296325287c05f78ff22ce0.tar.bz2
android-node-v8-8e29ce9f13f7e4b6c0296325287c05f78ff22ce0.zip
src: lint c++ code
Diffstat (limited to 'src/node_os.cc')
-rw-r--r--src/node_os.cc28
1 files changed, 16 insertions, 12 deletions
diff --git a/src/node_os.cc b/src/node_os.cc
index 224701a76b..d668c16d39 100644
--- a/src/node_os.cc
+++ b/src/node_os.cc
@@ -30,19 +30,19 @@
#ifdef __MINGW32__
# include <io.h>
-#endif
+#endif // __MINGW32__
#ifdef __POSIX__
# include <netdb.h> // MAXHOSTNAMELEN on Solaris.
# include <unistd.h> // gethostname, sysconf
# include <sys/param.h> // MAXHOSTNAMELEN on Linux and the BSDs.
# include <sys/utsname.h>
-#endif
+#endif // __MINGW32__
// Add Windows fallback.
#ifndef MAXHOSTNAMELEN
# define MAXHOSTNAMELEN 256
-#endif
+#endif // MAXHOSTNAMELEN
namespace node {
@@ -70,9 +70,9 @@ static void GetHostname(const FunctionCallbackInfo<Value>& args) {
if (gethostname(buf, sizeof(buf))) {
#ifdef __POSIX__
int errorno = errno;
-#else // __MINGW32__
+#else // __MINGW32__
int errorno = WSAGetLastError();
-#endif // __MINGW32__
+#endif // __POSIX__
return ThrowErrnoException(errorno, "gethostname");
}
buf[sizeof(buf) - 1] = '\0';
@@ -91,9 +91,9 @@ static void GetOSType(const FunctionCallbackInfo<Value>& args) {
return ThrowErrnoException(errno, "uname");
}
rval = info.sysname;
-#else // __MINGW32__
+#else // __MINGW32__
rval ="Windows_NT";
-#endif
+#endif // __POSIX__
args.GetReturnValue().Set(String::New(rval));
}
@@ -109,17 +109,21 @@ static void GetOSRelease(const FunctionCallbackInfo<Value>& args) {
return ThrowErrnoException(errno, "uname");
}
rval = info.release;
-#else // __MINGW32__
+#else // __MINGW32__
char release[256];
OSVERSIONINFO info;
info.dwOSVersionInfoSize = sizeof(info);
if (GetVersionEx(&info) == 0) return;
- sprintf(release, "%d.%d.%d", static_cast<int>(info.dwMajorVersion),
- static_cast<int>(info.dwMinorVersion), static_cast<int>(info.dwBuildNumber));
+ snprintf(release,
+ sizeof(release),
+ "%d.%d.%d",
+ static_cast<int>(info.dwMajorVersion),
+ static_cast<int>(info.dwMinorVersion),
+ static_cast<int>(info.dwBuildNumber));
rval = release;
-#endif
+#endif // __POSIX__
args.GetReturnValue().Set(String::New(rval));
}
@@ -225,7 +229,7 @@ static void GetInterfaceAddresses(const FunctionCallbackInfo<Value>& args) {
}
if (interfaces[i].address.address4.sin_family == AF_INET) {
- uv_ip4_name(&interfaces[i].address.address4,ip, sizeof(ip));
+ uv_ip4_name(&interfaces[i].address.address4, ip, sizeof(ip));
uv_ip4_name(&interfaces[i].netmask.netmask4, netmask, sizeof(netmask));
family = String::New("IPv4");
} else if (interfaces[i].address.address4.sin_family == AF_INET6) {