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