Dear all

i'm trying to code a custom module that will implement some logic this
is the concept of the module:

*********************************

/*
* some stuff...
*/
if(condition){

/*return a custom result*/

return OK;

}else{
/*forward the request to another server*/

            r->filename = "proxy:http://www.google.it/";;
            r->proxyreq = PROXYREQ_PROXY;
            r->handler  = "proxy-server";       

return OK;
}
*********************************

But it seems that when i go into the else condition the proxy request
isn't handled.

proxy and proxy_http are enabled and correctly working.

Is this code correct to forward a request and make my module working
as a proxy_http ?

Thanks in advance

-- 
/*************/
nik600

Reply via email to