RE: how many EOS buckets should a filter expect? (subrequest, PR 9644)

2002-06-10 Thread Ryan Bloom
From: [EMAIL PROTECTED] [mailto:trawick@rdu88-251- Initially I would think that a filter should see at most one EOS. mod_ext_filter doesn't have logic to ignore subsequent ones, resulting in a superfluous error message from a failed syscall when it tries to re-do some cleanup when it hits

Re: how many EOS buckets should a filter expect? (subrequest, PR 9644)

2002-06-10 Thread Jeff Trawick
Ryan Bloom [EMAIL PROTECTED] writes: From: [EMAIL PROTECTED] [mailto:trawick@rdu88-251- Initially I would think that a filter should see at most one EOS. mod_ext_filter doesn't have logic to ignore subsequent ones, resulting in a superfluous error message from a failed syscall when it

RE: how many EOS buckets should a filter expect? (subrequest, PR 9644)

2002-06-10 Thread Ryan Bloom
From: [EMAIL PROTECTED] [mailto:trawick@rdu88-251- Jeff Trawick [EMAIL PROTECTED] writes: I suspect you're talking about this line of code which doesn't exist in CVS: Index: server/protocol.c === RCS file:

Re: how many EOS buckets should a filter expect? (subrequest, PR 9644)

2002-06-10 Thread Jeff Trawick
Ryan Bloom [EMAIL PROTECTED] writes: void ap_finalize_sub_req_protocol(request_rec *sub) { -end_output_stream(sub); +/* tell the filter chain there is no more content coming */ +if (!sub-eos_sent) { +end_output_stream(sub); +} } It probably