in reply to Apache::AuthDBI, environment variables and brute force
According to my mod_perl quick reference card (reproduced verbatim):
This is provided by the Apache::Connection class, although this documentation appears to contain what you want.$c = $r->connection; $addr = $c->remote_addr( [$addr] ); $str = $c->remote_host(); $str = $c->remote_ip( [$ip] );
Hope that helps
|
|---|