diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2002-09-07 10:14:25 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2002-09-07 10:14:25 +0000 |
| commit | 96f8377fd89b8735027ccfebea8ad9e77f40f51c (patch) | |
| tree | 14e7de7a0e7c7d9815184a1e9bb95edab0617990 /src/os/win32/ngx_sendv.h | |
| parent | a58e3ca14300fce97b2124233afe140c8d59199f (diff) | |
| download | nginx-96f8377fd89b8735027ccfebea8ad9e77f40f51c.tar.gz nginx-96f8377fd89b8735027ccfebea8ad9e77f40f51c.tar.bz2 | |
nginx-0.0.1-2002-09-07-14:14:25 import
Diffstat (limited to '')
| -rw-r--r-- | src/os/win32/ngx_sendv.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/os/win32/ngx_sendv.h b/src/os/win32/ngx_sendv.h index 0de427610..0d20310b7 100644 --- a/src/os/win32/ngx_sendv.h +++ b/src/os/win32/ngx_sendv.h @@ -3,12 +3,13 @@ #include <ngx_config.h> +#include <ngx_connection.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) +ssize_t ngx_sendv(ngx_connection_t *c, ngx_iovec_t *iovec, int n); #endif /* _NGX_SENDV_H_INCLUDED_ */ |
