Re: A (likely) simple question regarding mod_proxy_http2

2016-03-04 Thread Ruediger Pluem
On 03/03/2016 10:36 PM, NormW wrote: > Trying my limited knowledge at compiling modules\http2\mod_proxy_http2, and > the compiler (no sniggering please) barfs in > both source: > h2_proxy_session.c and mod_proxy_http2.c > with an error that says they (respectively) can't open mod_http2.h. > >

A (likely) simple question regarding mod_proxy_http2

2016-03-03 Thread NormW
Trying my limited knowledge at compiling modules\http2\mod_proxy_http2, and the compiler (no sniggering please) barfs in both source: h2_proxy_session.c and mod_proxy_http2.c with an error that says they (respectively) can't open mod_http2.h. mod_http2.c has #include "mod_http2.h", the above

a simple question

2004-09-02 Thread Manos Moschous
Hi, I have a file opened FILE *fcp; fcp = fopen(file_to_save, wb); while (ap_get_brigade(rp-input_filters, bb, AP_MODE_READBYTES, APR_BLOCK_READ, conf-io_buffer_size) == APR_SUCCESS) { //I want to save the data to the file //How can i do that

Re: a simple question

2004-09-02 Thread Nick Kew
On Thu, 2 Sep 2004, Manos Moschous wrote: (a dumb subject line) I have a file opened FILE *fcp; fcp = fopen(file_to_save, wb); using the apr_ file API is preferred. //I want to save the data to the file //How can i do that The tmpfile_filter in mod_upload does that. Feel free to