Re: the request_rec structure in c plugins

2006-09-08 Thread Brian McQueen
Use apreq. It reads it all in and parses it and provides the parms in a table. It saves you from having to writer a parser. Its part of the apache project too: http://httpd.apache.org/apreq/ Here is a pseudocode sample of how to use it: apreq_handle_t *aph; ap_setup_client_block...error chec

RE: the request_rec structure in c plugins

2006-09-08 Thread Sivadoss, Pradosh
You can read the body data using the apache method "ap_get_client_block" -Original Message- From: toni pérez [mailto:[EMAIL PROTECTED] Sent: Friday, September 08, 2006 10:42 AM To: [EMAIL PROTECTED] Subject: the request_rec structure in c plugins hello list, I'm building a C plugin for