2003-02-07 01:21:13 +08:00
|
|
|
|
2004-09-28 16:34:51 +08:00
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
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
|
|
|
*
|
2005-10-19 20:33:58 +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.
|
|
|
|
*
|
2004-10-11 23:07:03 +08:00
|
|
|
* 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
|
|
|
|
2004-11-26 00:17:31 +08:00
|
|
|
#if (NGX_HAVE_FIONBIO)
|
2003-02-07 01:21:13 +08:00
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
int
|
|
|
|
ngx_nonblocking(ngx_socket_t s)
|
2003-02-07 01:21:13 +08:00
|
|
|
{
|
2007-02-18 03:53:52 +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
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
int
|
|
|
|
ngx_blocking(ngx_socket_t s)
|
2003-02-07 01:21:13 +08:00
|
|
|
{
|
2007-02-18 03:53:52 +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
|
|
|
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#if (NGX_FREEBSD)
|
2003-06-05 01:28:33 +08:00
|
|
|
|
2005-03-19 20:38:37 +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));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
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));
|
|
|
|
}
|
|
|
|
|
2004-10-21 23:34:38 +08:00
|
|
|
#elif (NGX_LINUX)
|
2003-11-26 04:44:56 +08:00
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2005-03-19 20:38:37 +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));
|
|
|
|
}
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
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
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
int
|
|
|
|
ngx_tcp_nopush(ngx_socket_t s)
|
2003-06-05 01:28:33 +08:00
|
|
|
{
|
2005-03-19 20:38:37 +08:00
|
|
|
return 0;
|
2003-06-05 01:28:33 +08:00
|
|
|
}
|
|
|
|
|
2005-10-19 20:33:58 +08:00
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
int
|
|
|
|
ngx_tcp_push(ngx_socket_t s)
|
2003-06-05 01:28:33 +08:00
|
|
|
{
|
2005-03-19 20:38:37 +08:00
|
|
|
return 0;
|
2003-06-05 01:28:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|