view src/os/win32/ngx_sendv.h @ 98:c9b243802a17

nginx-0.0.1-2003-05-30-18:27:59 import
author Igor Sysoev <igor@sysoev.ru>
date Fri, 30 May 2003 14:27:59 +0000
parents 6f58641241bb
children
line wrap: on
line source

#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_ */