Re: ap_get_remote_logname in PerlProcessConnectionHandler

2006-07-21 Thread Radoslaw Zielinski
Philip M. Gollucci <[EMAIL PROTECTED]> [20-07-2006 23:28]: >> writing my own implementation... But, luckily, APR seems to have the >> ap_get_remote_logname() function, interfaced to mod_perl and enabled >> by Apache2::Access ($r->get_remote_logname()). Correcting, if someone follows: it's not APR

Re: ap_get_remote_logname in PerlProcessConnectionHandler

2006-07-20 Thread Philip M. Gollucci
writing my own implementation... But, luckily, APR seems to have the ap_get_remote_logname() function, interfaced to mod_perl and enabled by Apache2::Access ($r->get_remote_logname()). Can I access this functionality in PerlProcessConnectionHandler (and maybe PerlPreConnectionHandler) somehow?

ap_get_remote_logname in PerlProcessConnectionHandler

2006-07-20 Thread Radoslaw Zielinski
Hello, I'm developing a mp2 module implementing functionality of the spamd daemon from the SpamAssassin project. It has its own (HTTP-like) protocol, so I'm using PerlProcessConnectionHandler. I need to check user's ident (RFC 1413) and compare it with the User header. Net::Ident proved to be u