diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-06-12 05:54:39 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-06-12 05:54:39 +0000 |
commit | 0915977df53c486abbc6081e1c83f9f8e7a8f111 (patch) | |
tree | 778b5191eed39b3043798423ccc23708e65f116f /src/core/ngx_os_init.h | |
parent | 239baac646073cab7bbaf537ba2d6ca844f2c992 (diff) | |
download | nginx-0915977df53c486abbc6081e1c83f9f8e7a8f111.tar.gz nginx-0915977df53c486abbc6081e1c83f9f8e7a8f111.zip |
nginx-0.0.1-2003-06-12-09:54:39 import
Diffstat (limited to 'src/core/ngx_os_init.h')
-rw-r--r-- | src/core/ngx_os_init.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_os_init.h b/src/core/ngx_os_init.h index 8a14ad0ce..355509587 100644 --- a/src/core/ngx_os_init.h +++ b/src/core/ngx_os_init.h @@ -25,8 +25,8 @@ typedef struct { ssize_t (*recv)(ngx_connection_t *c, char *buf, size_t size); - void *dummy_recv_chain; - void *dummy_send; + ssize_t (*recv_chain)(ngx_connection_t *c, ngx_chain_t *in); + ssize_t (*send)(ngx_connection_t *c, char *buf, size_t size); ngx_chain_t *(*send_chain)(ngx_connection_t *c, ngx_chain_t *in); int flags; } ngx_os_io_t; |