diff options
author | Igor Sysoev <igor@sysoev.ru> | 2008-12-25 20:07:12 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2008-12-25 20:07:12 +0000 |
commit | 97bf6c760ac63bf99bad241594228a6599e9dde0 (patch) | |
tree | 1e5466fff55fec8d76f7fa9df8e5e67c1023ee46 /src/os/unix/ngx_posix_init.c | |
parent | 07fc16cf31a6e4182321dd3c94bacdada542cfc6 (diff) | |
download | nginx-97bf6c760ac63bf99bad241594228a6599e9dde0.tar.gz nginx-97bf6c760ac63bf99bad241594228a6599e9dde0.zip |
set send() slot for POSIX systems
Diffstat (limited to 'src/os/unix/ngx_posix_init.c')
-rw-r--r-- | src/os/unix/ngx_posix_init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os/unix/ngx_posix_init.c b/src/os/unix/ngx_posix_init.c index 78c5d4be9..b38a81009 100644 --- a/src/os/unix/ngx_posix_init.c +++ b/src/os/unix/ngx_posix_init.c @@ -22,7 +22,7 @@ ngx_os_io_t ngx_os_io = { ngx_unix_recv, ngx_readv_chain, ngx_udp_unix_recv, - NULL, + ngx_unix_send, ngx_writev_chain, 0 }; |