From e0af1b89dcd100462a3195534b2f78a838ca85b5 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Fri, 16 Aug 2002 15:27:03 +0000 Subject: nginx-0.0.1-2002-08-16-19:27:03 import --- src/os/unix/ngx_socket.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/os/unix/ngx_socket.h (limited to 'src/os/unix/ngx_socket.h') diff --git a/src/os/unix/ngx_socket.h b/src/os/unix/ngx_socket.h new file mode 100644 index 000000000..18c07f9b0 --- /dev/null +++ b/src/os/unix/ngx_socket.h @@ -0,0 +1,16 @@ +#ifndef _NGX_SOCKET_H_INCLUDED_ +#define _NGX_SOCKET_H_INCLUDED_ + + +#include + + +typedef int ngx_socket_t; + +#define ngx_init_sockets + +#define ngx_nonblocking(s) fcntl(s, F_SETFL, O_NONBLOCK) +#define ngx_nonblocking_n "fcntl (O_NONBLOCK)" + + +#endif /* _NGX_SOCKET_H_INCLUDED_ */ -- cgit v1.2.3