123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- #ifndef _PAM_TOKENS_H
- #define _PAM_TOKENS_H
- #ifndef LIBPAM_COMPILE
- static
- #endif
- const char * const _pam_token_actions[-_PAM_ACTION_UNDEF] = {
- "ignore",
- "ok",
- "done",
- "bad",
- "die",
- "reset",
- };
- #ifndef LIBPAM_COMPILE
- static
- #endif
- const char * const _pam_token_returns[_PAM_RETURN_VALUES+1] = {
- "success",
- "open_err",
- "symbol_err",
- "service_err",
- "system_err",
- "buf_err",
- "perm_denied",
- "auth_err",
- "cred_insufficient",
- "authinfo_unavail",
- "user_unknown",
- "maxtries",
- "new_authtok_reqd",
- "acct_expired",
- "session_err",
- "cred_unavail",
- "cred_expired",
- "cred_err",
- "no_module_data",
- "conv_err",
- "authtok_err",
- "authtok_recover_err",
- "authtok_lock_busy",
- "authtok_disable_aging",
- "try_again",
- "ignore",
- "abort",
- "authtok_expired",
- "module_unknown",
- "bad_item",
- "conv_again",
- "incomplete",
- "default"
- };
- #endif
|