blob: 01d662fec60a30fa52006772d6368f86be9bdef6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _NGX_RECV_H_INCLUDED_
#define _NGX_RECV_H_INCLUDED_
#if 0
#include <errno.h>
#define ngx_recv(fd, buf, size, flags) recv(fd, buf, size, flags)
#endif
#endif /* _NGX_RECV_H_INCLUDED_ */
|