view src/os/win32/ngx_sendv.h @ 1:d220029ac7f3

nginx-0.0.1-2002-08-15-21:20:26 import
author Igor Sysoev <igor@sysoev.ru>
date Thu, 15 Aug 2002 17:20:26 +0000
parents 4eff17414a43
children 6f58641241bb
line wrap: on
line source

#ifndef _NGX_SENDV_H_INCLUDED_
#define _NGX_SENDV_H_INCLUDED_


#include <ngx_config.h>

typedef WSABUF        ngx_iovec_t;
#define ngx_iov_base  buf
#define ngx_iov_len   len

#define ngx_sendv(s, iovec, n, sent)  WSASend(s, iovec, n, sent, 0, NULL, NULL)


#endif /* _NGX_SENDV_H_INCLUDED_ */