Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
uv: upgrade to 70381ce
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Oct 30, 2011
1 parent 12cf730 commit a7803c5
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 7 deletions.
31 changes: 25 additions & 6 deletions deps/uv/src/unix/core.c
Expand Up @@ -38,18 +38,22 @@
#include <limits.h> /* PATH_MAX */
#include <sys/uio.h> /* writev */

#ifdef __linux__
# include <sys/ioctl.h>
#endif

#ifdef __sun
# include <sys/types.h>
# include <sys/wait.h>
#endif

#if defined(__APPLE__)
#include <mach-o/dyld.h> /* _NSGetExecutablePath */
#ifdef __APPLE__
# include <mach-o/dyld.h> /* _NSGetExecutablePath */
#endif

#if defined(__FreeBSD__)
#include <sys/sysctl.h>
#include <sys/wait.h>
#ifdef __FreeBSD__
# include <sys/sysctl.h>
# include <sys/wait.h>
#endif

static uv_loop_t default_loop_struct;
Expand Down Expand Up @@ -593,7 +597,11 @@ static int uv_getaddrinfo_done(eio_req* req) {
free(handle->service);
free(handle->hostname);

if (handle->retcode != 0) {
if (handle->retcode == 0) {
/* OK */
} else if (handle->retcode == EAI_NONAME || handle->retcode == EAI_NODATA) {
uv__set_sys_error(handle->loop, ENOENT); /* FIXME compatibility hack */
} else {
handle->loop->last_err.code = UV_EADDRINFO;
handle->loop->last_err.sys_errno_ = handle->retcode;
}
Expand Down Expand Up @@ -734,6 +742,9 @@ int uv__close(int fd) {


int uv__nonblock(int fd, int set) {
#if FIONBIO
return ioctl(fd, FIONBIO, &set);
#else
int flags;

if ((flags = fcntl(fd, F_GETFL)) == -1) {
Expand All @@ -751,10 +762,17 @@ int uv__nonblock(int fd, int set) {
}

return 0;
#endif
}


int uv__cloexec(int fd, int set) {
#if __linux__
/* Linux knows only FD_CLOEXEC so we can safely omit the fcntl(F_GETFD)
* syscall. CHECKME: That's probably true for other Unices as well.
*/
return fcntl(fd, F_SETFD, set ? FD_CLOEXEC : 0);
#else
int flags;

if ((flags = fcntl(fd, F_GETFD)) == -1) {
Expand All @@ -772,6 +790,7 @@ int uv__cloexec(int fd, int set) {
}

return 0;
#endif
}


Expand Down
2 changes: 1 addition & 1 deletion deps/uv/src/win/tcp.c
Expand Up @@ -1068,4 +1068,4 @@ int uv_tcp_duplicate_socket(uv_tcp_t* handle, int pid,
}

return 0;
}
}
4 changes: 4 additions & 0 deletions deps/uv/src/win/winsock.h
Expand Up @@ -37,6 +37,10 @@
# define SO_UPDATE_CONNECT_CONTEXT 0x7010
#endif

#ifndef TCP_KEEPALIVE
# define TCP_KEEPALIVE 3
#endif

#ifndef IPV6_V6ONLY
#define IPV6_V6ONLY 27
#endif
Expand Down

0 comments on commit a7803c5

Please sign in to comment.