Immediate output in process_connection

2005-07-03 Thread Jem Berkes
I've been playing with basic modules that implement their own protocol (process_connection hooked) along the lines of the mod_echo example. But one thing I can't seem to do is send output immediately back to the client, even though I am flushing the output filters. With the following code, if

Re: Immediate output in process_connection

2005-07-03 Thread Paul Querna
Jem Berkes wrote: I've been playing with basic modules that implement their own protocol (process_connection hooked) along the lines of the mod_echo example. But one thing I can't seem to do is send output immediately back to the client, even though I am flushing the output filters. With

Re: Immediate output in process_connection

2005-07-03 Thread Jem Berkes
What is your Listen line for this protocol's port? I just had Listen 1234 Try something like: Listen 0.0.0.0:1234 myproto AcceptFilter myproto none Well that did indeed solve my problem :) Thanks.