[EMAIL PROTECTED] the request_rec structure in c plugins

2006-09-08 Thread toni pérez
hello list, I'm building a C plugin for apache and, I need acces to the POST DATA in the request. I not found which structure contains the POST DATA in the request_rec structure. There is the args field that contains the query string, but is for GET method, I need the same for the POST method.

Re: [EMAIL PROTECTED] uri and location directive

2006-04-05 Thread toni pérez
On 4/4/06, Boyle Owen [EMAIL PROTECTED] wrote: -Original Message- From: toni pérez [mailto:[EMAIL PROTECTED] Sent: Montag, 3. April 2006 17:11 To: users@httpd.apache.org Subject: [EMAIL PROTECTED] uri and location directive Hi list, I have got an apache auth_module write

[EMAIL PROTECTED] uri and location directive

2006-04-03 Thread toni pérez
Hi list, I have got an apache auth_module write in c to apply own requires in an own authorization handler, such this: Location /apw5/rme allow from all AuthType CA2 require ACL Grupo 'RME_usuaris' /Location Location /apw5/ allow from all AuthType CA2 require USUARIO-VALIDO /Location When the

[EMAIL PROTECTED] apr_hash collisions

2005-12-28 Thread toni pérez
hello list, What happend when I do apr_hash_set(table,key,APR_HASH_KEY_STRING,value) and the key exist and produce a collision? overwrite the value? nothing? thanks,

[EMAIL PROTECTED] apache modules development,hash tables,pools and threads

2005-12-27 Thread toni pérez
Hi list, My question is about modules programming. I have an apache with mpm worker, every process makes a number of threads. Can I use apr_hash interface, inside a module in a process pool lifetime with mpm worker model? Can I insert,read and delete data in hash tables from any request that