X-Git-Url: http://andersk.mit.edu/gitweb/gssapi-openssh.git/blobdiff_plain/f97edba64d1fb2b28ac269fe588396643d271b7b..c7931c9aedd8e12fdd0df715dcefce0e0c95be6a:/openssh/auth.h diff --git a/openssh/auth.h b/openssh/auth.h index 303c22d..3f09416 100644 --- a/openssh/auth.h +++ b/openssh/auth.h @@ -41,6 +41,9 @@ #ifdef KRB5 #include #endif +#ifdef AFS_KRB5 +#include +#endif typedef struct Authctxt Authctxt; typedef struct Authmethod Authmethod; @@ -70,6 +73,9 @@ struct Authctxt { krb5_principal krb5_user; char *krb5_ticket_file; char *krb5_ccname; +#endif +#ifdef SESSION_HOOKS + char *session_env_file; #endif Buffer *loginmsg; void *methoddata; @@ -146,6 +152,7 @@ void auth_log(Authctxt *, int, char *, char *); void userauth_finish(Authctxt *, int, char *); void userauth_send_banner(const char *); int auth_root_allowed(char *); +char *expand_authorized_keys(const char *filename, struct passwd *pw); char *auth2_read_banner(void);