kgio.git  about / heads / tags
kinder, gentler I/O for Ruby
blob 8fc37c44683c8a9fecefca20fccb82ccb91a151b 1375 bytes (raw)
$ git show v1.1.0:ext/kgio/missing/accept4.h	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
 
#ifdef HAVE_ACCEPT4
#  define A4_SOCK_CLOEXEC SOCK_CLOEXEC
#  define A4_SOCK_NONBLOCK SOCK_NONBLOCK
#else
#  ifndef _GNU_SOURCE
#    define _GNU_SOURCE
#  endif
#  include <sys/types.h>
#  include <sys/socket.h>
#  ifndef SOCK_CLOEXEC
#    if (FD_CLOEXEC == O_NONBLOCK)
#      define A4_SOCK_CLOEXEC 1
#      define A4_SOCK_NONBLOCK 2
#    else
#      define A4_SOCK_CLOEXEC FD_CLOEXEC
#      define A4_SOCK_NONBLOCK O_NONBLOCK
#    endif
#  else
#    define A4_SOCK_CLOEXEC SOCK_CLOEXEC
#    define A4_SOCK_NONBLOCK SOCK_NONBLOCK
#  endif

/* accept4() is currently a Linux-only goodie */
static int
accept4(int sockfd, struct sockaddr *addr, socklen_t *addrlen, int flags)
{
	int fd = accept(sockfd, addr, addrlen);

	if (fd >= 0) {
		if ((flags & A4_SOCK_CLOEXEC) == A4_SOCK_CLOEXEC)
			(void)fcntl(fd, F_SETFD, FD_CLOEXEC);

		/*
		 * Some systems inherit O_NONBLOCK across accept().
		 * We also expect our users to use MSG_DONTWAIT under
		 * Linux, so fcntl() is completely unnecessary
		 * in most cases...
		 */
		if ((flags & A4_SOCK_NONBLOCK) == A4_SOCK_NONBLOCK) {
			int fl = fcntl(fd, F_GETFL);

			if ((fl & O_NONBLOCK) == 0)
				(void)fcntl(fd, F_SETFL, fl | O_NONBLOCK);
		}

		/*
		 * nothing we can do about fcntl() errors in this wrapper
		 * function, let the user (Ruby) code figure it out
		 */
		errno = 0;
	}
	return fd;
}
#endif /* !HAVE_ACCEPT4 */

git clone git://yhbt.net/kgio.git
git clone https://yhbt.net/kgio.git