| #include <ngx_connection.h> |
| ssize_t ngx_sendv(ngx_connection_t *c, ngx_iovec_t *iovec, int n) |
| /* STUB: WSABUF must be 4-byte aligned. Undocumented WSAEINVAL error */ |
| ngx_memcpy(iov, iovec, n * sizeof(ngx_iovec_t)); |
| ngx_log_debug(c->log, "WSASend: %d, %d, %08x" _ c->fd _ n _ iovec); |
| rc = WSASend(c->fd, iovec, n, &sent, 0, NULL, NULL); |
| ngx_log_debug(c->log, "WSASend() done"); |
| if (rc == SOCKET_ERROR) { |
| ngx_log_error(NGX_LOG_INFO, c->log, err, "WSASend() eagain"); |
| ngx_log_error(NGX_LOG_ERR, c->log, err, "WSASend() failed"); |