comparison src/os/win32/ngx_wsasend_chain.c @ 363:f2755a2885c8

nginx-0.0.7-2004-06-21-23:22:53 import
author Igor Sysoev <igor@sysoev.ru>
date Mon, 21 Jun 2004 19:22:53 +0000
parents e366ba5db8f8
children da8c5707af39
comparison
equal deleted inserted replaced
362:7650aea1816f 363:f2755a2885c8
2 #include <ngx_config.h> 2 #include <ngx_config.h>
3 #include <ngx_core.h> 3 #include <ngx_core.h>
4 #include <ngx_event.h> 4 #include <ngx_event.h>
5 5
6 6
7 ngx_chain_t *ngx_wsasend_chain(ngx_connection_t *c, ngx_chain_t *in) 7 ngx_chain_t *ngx_wsasend_chain(ngx_connection_t *c, ngx_chain_t *in,
8 off_t limit)
8 { 9 {
9 int rc; 10 int rc;
10 u_char *prev; 11 u_char *prev;
11 size_t size; 12 size_t size;
12 u_long sent; 13 u_long sent;
97 98
98 return cl; 99 return cl;
99 } 100 }
100 101
101 102
102 ngx_chain_t *ngx_overlapped_wsasend_chain(ngx_connection_t *c, ngx_chain_t *in) 103 ngx_chain_t *ngx_overlapped_wsasend_chain(ngx_connection_t *c, ngx_chain_t *in,
104 off_t limit)
103 { 105 {
104 int rc; 106 int rc;
105 u_char *prev; 107 u_char *prev;
106 size_t size; 108 size_t size;
107 u_long sent; 109 u_long sent;