17 lines
289 B
C
17 lines
289 B
C
|
#ifndef _NGX_SOCKET_H_INCLUDED_
|
||
|
#define _NGX_SOCKET_H_INCLUDED_
|
||
|
|
||
|
|
||
|
#include <ngx_config.h>
|
||
|
|
||
|
typedef SOCKET ngx_socket_t;
|
||
|
|
||
|
void ngx_init_sockets(ngx_log_t *log);
|
||
|
|
||
|
int ngx_nonblocking_n(s);
|
||
|
#define ngx_nonblocking_n "ioctlsocket (FIONBIO)"
|
||
|
|
||
|
|
||
|
|
||
|
#endif /* _NGX_SOCKET_H_INCLUDED_ */
|