1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
/* tables.c,v 1.2 2004/06/17 01:27:41 eagle Exp
**
** String tables used by library routines and made available by sident.h.
** The ident_err_txt table must match the enum id_codes.
*/
/* Text strings corresponding to various errors. The string values are in
many cases madated by the protocol. */
const char *ident_err_txt[] = {
"NO-ERROR", /* 0 */
"AUTH-FAILURE",
"AUTH-NOT-SUPPORTED",
"USER-CANT-AUTH",
"INVALID-AUTH-RESP-INFO",
"INVALID-AUTH-REQ-INFO",
"NO-USER",
"UNKNOWN-ERROR", /* 7 */
"INVALID-PORT",
"HIDDEN-USER",
"USER-WONT-AUTH", /* Deprecated */
"INTERNAL-ERROR", /* 11 */
"NO-MUTUAL-AUTH",
"MUTUAL-AUTH-FAIL",
"SYSTEM-ERROR", /* 14 */
"FLAG-NOT-SUPPORTED",
"INVALID-FLAG-VALUE", /* 16 */
"TIMEOUT"
};
/* Authentication flags recognized by the KERBEROS_V4 authentication
protocol. */
const char *ident_krb_auth_flags[] = {
"USER-INTERACTION"
};
|