commit | 0c331d9f666b4f9be91009b7caea457e58a80779 | [log] [tgz] |
---|---|---|
author | Igor Sysoev <igor@sysoev.ru> | Thu Aug 15 17:20:26 2002 +0000 |
committer | Igor Sysoev <igor@sysoev.ru> | Thu Aug 15 17:20:26 2002 +0000 |
tree | d48221581b361ee5b0ccad46e4df49caa41b1bba | |
parent | 6de5c2cb63f8aee4bcbec3c363a72fd8e4a4e64d [diff] [blame] |
nginx-0.0.1-2002-08-15-21:20:26 import
diff --git a/src/os/unix/ngx_recv.h b/src/os/unix/ngx_recv.h new file mode 100644 index 0000000..e92832c --- /dev/null +++ b/src/os/unix/ngx_recv.h
@@ -0,0 +1,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_ */