mirror of https://github.com/nodejs/node.git
node_net: IsIP and CreateErrnoException just work
parent
a807ac6660
commit
46dc393ff1
|
@ -1430,6 +1430,8 @@ static Handle<Value> GetAddrInfo(const Arguments& args) {
|
|||
return Undefined();
|
||||
}
|
||||
|
||||
#endif // __POSIX__
|
||||
|
||||
|
||||
static Handle<Value> IsIP(const Arguments& args) {
|
||||
HandleScope scope;
|
||||
|
@ -1467,8 +1469,6 @@ static Handle<Value> CreateErrnoException(const Arguments& args) {
|
|||
return scope.Close(exception);
|
||||
}
|
||||
|
||||
#endif // __POSIX__
|
||||
|
||||
|
||||
void InitNet(Handle<Object> target) {
|
||||
HandleScope scope;
|
||||
|
@ -1510,9 +1510,9 @@ void InitNet(Handle<Object> target) {
|
|||
NODE_SET_METHOD(target, "getsockname", GetSockName);
|
||||
NODE_SET_METHOD(target, "getpeername", GetPeerName);
|
||||
NODE_SET_METHOD(target, "getaddrinfo", GetAddrInfo);
|
||||
#endif // __POSIX__
|
||||
NODE_SET_METHOD(target, "isIP", IsIP);
|
||||
NODE_SET_METHOD(target, "errnoException", CreateErrnoException);
|
||||
#endif // __POSIX__
|
||||
|
||||
errno_symbol = NODE_PSYMBOL("errno");
|
||||
syscall_symbol = NODE_PSYMBOL("syscall");
|
||||
|
|
Loading…
Reference in New Issue