aboutsummaryrefslogtreecommitdiff
path: root/src/os/win32/ngx_sendv.h
blob: 0d20310b70ae6d74dcfb03c572033268fe045860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _NGX_SENDV_H_INCLUDED_
#define _NGX_SENDV_H_INCLUDED_


#include <ngx_config.h>
#include <ngx_connection.h>

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

ssize_t ngx_sendv(ngx_connection_t *c, ngx_iovec_t *iovec, int n);


#endif /* _NGX_SENDV_H_INCLUDED_ */