nginx/src/os/unix/ngx_socket.c

116 lines
1.5 KiB
C
Raw Normal View History

2003-02-07 01:21:13 +08:00
/*
* Copyright (C) Igor Sysoev
*/
2003-06-05 01:28:33 +08:00
#include <ngx_config.h>
#include <ngx_core.h>
2003-02-07 01:21:13 +08:00
2003-05-21 21:28:21 +08:00
/*
2006-09-22 20:19:02 +08:00
* ioctl(FIONBIO) sets a non-blocking mode with the single syscall
* while fcntl(F_SETFL, O_NONBLOCK) needs to learn the current state
* using fcntl(F_GETFL).
2004-02-09 15:46:43 +08:00
*
* ioctl() and fcntl() are syscalls at least in FreeBSD 2.x, Linux 2.2
2004-06-07 03:49:18 +08:00
* and Solaris 7.
*
* ioctl() in Linux 2.4 and 2.6 uses BKL, however, fcntl(F_SETFL) uses it too.
2004-02-09 15:46:43 +08:00
*/
2003-05-21 21:28:21 +08:00
2003-06-05 01:28:33 +08:00
#if (NGX_HAVE_FIONBIO)
2003-02-07 01:21:13 +08:00
int
ngx_nonblocking(ngx_socket_t s)
2003-02-07 01:21:13 +08:00
{
int nb;
2004-06-15 15:55:11 +08:00
nb = 1;
2003-02-07 01:21:13 +08:00
return ioctl(s, FIONBIO, &nb);
}
2003-06-05 01:28:33 +08:00
int
ngx_blocking(ngx_socket_t s)
2003-02-07 01:21:13 +08:00
{
int nb;
2004-06-15 15:55:11 +08:00
nb = 0;
2003-02-07 01:21:13 +08:00
return ioctl(s, FIONBIO, &nb);
}
#endif
2003-06-05 01:28:33 +08:00
#if (NGX_FREEBSD)
2003-06-05 01:28:33 +08:00
int
ngx_tcp_nopush(ngx_socket_t s)
2003-06-05 01:28:33 +08:00
{
int tcp_nopush;
tcp_nopush = 1;
return setsockopt(s, IPPROTO_TCP, TCP_NOPUSH,
(const void *) &tcp_nopush, sizeof(int));
}
int
ngx_tcp_push(ngx_socket_t s)
2003-06-05 01:28:33 +08:00
{
int tcp_nopush;
tcp_nopush = 0;
return setsockopt(s, IPPROTO_TCP, TCP_NOPUSH,
(const void *) &tcp_nopush, sizeof(int));
}
#elif (NGX_LINUX)
2003-11-26 04:44:56 +08:00
int
ngx_tcp_nopush(ngx_socket_t s)
2003-11-26 04:44:56 +08:00
{
int cork;
cork = 1;
return setsockopt(s, IPPROTO_TCP, TCP_CORK,
(const void *) &cork, sizeof(int));
}
int
ngx_tcp_push(ngx_socket_t s)
2003-11-26 04:44:56 +08:00
{
int cork;
cork = 0;
return setsockopt(s, IPPROTO_TCP, TCP_CORK,
(const void *) &cork, sizeof(int));
}
2003-06-11 23:28:34 +08:00
#else
2003-06-05 01:28:33 +08:00
int
ngx_tcp_nopush(ngx_socket_t s)
2003-06-05 01:28:33 +08:00
{
return 0;
2003-06-05 01:28:33 +08:00
}
int
ngx_tcp_push(ngx_socket_t s)
2003-06-05 01:28:33 +08:00
{
return 0;
2003-06-05 01:28:33 +08:00
}
#endif