On 10/23/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Author: brianp
> Date: Sun Oct 23 15:38:35 2005
> New Revision: 327872
>
> URL: http://svn.apache.org/viewcvs?rev=327872&view=rev
> Log:
> New version of ap_core_output_filter that does nonblocking writes
...
> +static apr_status_t send_brigade_blocking(apr_socket_t *s,
> +                                          apr_bucket_brigade *bb,
> +                                          apr_size_t *bytes_written,
> +                                          conn_rec *c)
> +{
...
> +            if (APR_STATUS_IS_EAGAIN(rv)) {
> +                rv = apr_wait_for_io_or_timeout(NULL, s, 0);

Whoops, not an API.  This needs to use apr_poll().

Reply via email to