aboutsummaryrefslogtreecommitdiff
path: root/src/os/unix/ngx_socket.h
blob: e9e797474b66d28dd7657434050eeee0e6d96960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef _NGX_SOCKET_H_INCLUDED_
#define _NGX_SOCKET_H_INCLUDED_


#include <ngx_config.h>


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)"

#define ngx_close_socket    close
#define ngx_close_socket_n  "close"


#endif /* _NGX_SOCKET_H_INCLUDED_ */