Geoffrey Young wrote:
> > > what is wrong with DONE? DONE immediatly closes the client
> > connection
> > > and starts the logging phase. if you have sent the content already
> > > then there is nothing to worry about. the call to send_http_header
> > > will pick up on the any status you set p
> > what is wrong with DONE? DONE immediatly closes the client
> connection
> > and starts the logging phase. if you have sent the content already
> > then there is nothing to worry about. the call to send_http_header
> > will pick up on the any status you set previously or use the default
>
* Mark Maunder <[EMAIL PROTECTED]> wrote:
> Nikolaus Rath wrote:
>
>> * Mark Maunder <[EMAIL PROTECTED]> wrote:
>> > Hi,
>> >
>> > If I'm using stacked handlers, what should I return if I dont want the
>> > next handler in line to run because I've returned all required content
>> > to the client?
* Geoffrey Young <[EMAIL PROTECTED]> wrote:
If I'm using stacked handlers, what should I return if I >> >
> dont want the next handler in line to run because I've returned
>> > > all >> required content to the client? (the eagle book says
>> > > anything other than >> OK,
Geoffrey Young wrote:
> > -Original Message-
> > From: Mark Maunder [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, October 21, 2001 1:49 PM
> > To: Nikolaus Rath
> > Cc: [EMAIL PROTECTED]
> > Subject: Re: stacked handlers return vals
> >
>
> -Original Message-
> From: Mark Maunder [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, October 21, 2001 1:49 PM
> To: Nikolaus Rath
> Cc: [EMAIL PROTECTED]
> Subject: Re: stacked handlers return vals
>
>
> Nikolaus Rath wrote:
>
> > * Mark Maunder
Nikolaus Rath wrote:
> * Mark Maunder <[EMAIL PROTECTED]> wrote:
> > Hi,
> >
> > If I'm using stacked handlers, what should I return if I dont want the
> > next handler in line to run because I've returned all required content
> > to the client? (the eagle book says anything other than OK, DECLIN
* Mark Maunder <[EMAIL PROTECTED]> wrote:
> Hi,
>
> If I'm using stacked handlers, what should I return if I dont want the
> next handler in line to run because I've returned all required content
> to the client? (the eagle book says anything other than OK, DECLINED
> or DONE, but what's the appr