From 6126d57239edc0ed0fac8082e00cd4a685c0566d Mon Sep 17 00:00:00 2001 From: Sumit Bose Date: Fri, 14 May 2010 12:04:36 +0200 Subject: Add callback to remove krb5 info files when going offline --- src/providers/krb5/krb5_auth.h | 40 ---------------------------------------- 1 file changed, 40 deletions(-) (limited to 'src/providers/krb5/krb5_auth.h') diff --git a/src/providers/krb5/krb5_auth.h b/src/providers/krb5/krb5_auth.h index ec54f738..293375da 100644 --- a/src/providers/krb5/krb5_auth.h +++ b/src/providers/krb5/krb5_auth.h @@ -37,8 +37,6 @@ #define ILLEGAL_PATH_PATTERN "//|/\\./|/\\.\\./" -typedef enum { INIT_PW, INIT_KT, RENEW, VALIDATE } action_type; - struct krb5child_req { pid_t child_pid; int read_from_child_fd; @@ -62,44 +60,6 @@ struct krb5child_req { bool valid_tgt_present; }; -struct fo_service; -struct deferred_auth_ctx; - -struct krb5_ctx { - /* opts taken from kinit */ - /* in seconds */ - krb5_deltat starttime; - krb5_deltat lifetime; - krb5_deltat rlife; - - int forwardable; - int proxiable; - int addresses; - - int not_forwardable; - int not_proxiable; - int no_addresses; - - int verbose; - - char* principal_name; - char* service_name; - char* keytab_name; - char* k5_cache_name; - char* k4_cache_name; - - action_type action; - - struct dp_option *opts; - struct krb5_service *service; - struct krb5_service *kpasswd_service; - int child_debug_fd; - - pcre *illegal_path_re; - - struct deferred_auth_ctx *deferred_auth_ctx; -}; - void krb5_pam_handler(struct be_req *be_req); struct tevent_req *krb5_auth_send(TALLOC_CTX *mem_ctx, -- cgit