You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Rob Hartill <ha...@ooo.lanl.gov> on 1995/08/15 19:15:50 UTC

Authorization

I just wrote myself a mod_auth_func.c  which lets me define
a function to check authorizatiob based on a password computed
from the URL.

It works ok (so far) but I had to change,

int check_auth (request_rec *r) {
   return run_method (r, XtOffsetOf (module, auth_checker), 0);

to

   return run_method (r, XtOffsetOf (module, auth_checker), 1);


is that safe ?

rob