diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-10-16 15:44:36 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-10-16 15:44:36 +0000 |
commit | 16ff981e58427ae8bd5e8420411a9978678841e4 (patch) | |
tree | 9916eeb066e23a2922dcd9d036e156560880571e /src/src/functions.h | |
parent | 7befa435e5664f43d90bf5a2703fcf4f2a26139e (diff) |
Add server_condition to all authenticators, to allow for additional
conditions (and thereby implement authorization).
Diffstat (limited to 'src/src/functions.h')
-rw-r--r-- | src/src/functions.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/src/functions.h b/src/src/functions.h index 302f8b6d1..170a84411 100644 --- a/src/src/functions.h +++ b/src/src/functions.h @@ -1,4 +1,4 @@ -/* $Cambridge: exim/src/src/functions.h,v 1.28 2006/10/09 14:36:25 ph10 Exp $ */ +/* $Cambridge: exim/src/src/functions.h,v 1.29 2006/10/16 15:44:36 ph10 Exp $ */ /************************************************* * Exim - an Internet mail transport agent * @@ -49,6 +49,7 @@ extern int auth_call_pwcheck(uschar *, uschar **); extern int auth_call_radius(uschar *, uschar **); extern int auth_call_saslauthd(uschar *, uschar *, uschar *, uschar *, uschar **); +extern int auth_check_serv_cond(auth_instance *); extern int auth_get_data(uschar **, uschar *, int); extern int auth_get_no64_data(uschar **, uschar *); extern uschar *auth_xtextencode(uschar *, int); |