Filtering subrequest through byterange filter?

2010-01-11 Thread Michael Spiegle
I have a module that oftentimes needs to use a subrequest in order to finish sending the response. If I create the subrequest via ap_sub_req_lookup_uri(), then add a Range header to sr-headers_in, this appears to work ok if my subrequest is destined for mod_proxy. I believe this is because

Re: [Fwd: Re: Having some issues with subrequests and filters]

2009-08-18 Thread Michael Spiegle
On Tue, 18 Aug 2009 13:56:51 +0200, Sorin Manolache sor...@gmail.com wrote: On Tue, Aug 18, 2009 at 08:38, Michael Spieglem...@nauticaltech.com wrote: Nick Kew wrote: Michael Spiegle wrote: Hello, I have a module I am writing which implements a content-generator and a filter.  If I make

Re: Making HTTP requests

2009-06-04 Thread Michael Spiegle
Kevac Marko wrote: I am using CURL. On Mon, Jun 1, 2009 at 9:01 PM, Michael Spiegle m...@nauticaltech.com wrote: Is there a proper/defined way to use mod_proxy for this, or should I just move forward with cURL? Thanks. After looking at libcurl's API, I'm going to give it a shot. Mike

Re: How do you handle multiple custom config containers?

2009-02-10 Thread Michael Spiegle
Michael Spiegle wrote: Hi All, I'm writing a module called mod_gfx which will perform on-the-fly image resizing via libgd. I wanted to make the module as configurable as possible so others can take advantage of it as well. I'm currently running into a rough spot with custom containers

How do you handle multiple custom config containers?

2009-02-09 Thread Michael Spiegle
Hi All, I'm writing a module called mod_gfx which will perform on-the-fly image resizing via libgd. I wanted to make the module as configurable as possible so others can take advantage of it as well. I'm currently running into a rough spot with custom containers, but first I'd like to make