diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-04-03 14:20:12 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-04-03 14:20:12 +0000 |
| commit | ca63be6529dea9fdf0a52e31f40584dd90f3e152 (patch) | |
| tree | ba9b0268b642ee9a56812fe57e3260cb2c1dc6d1 /src | |
| parent | b3636731482e71b97eed09ba0f10844a5295fcb5 (diff) | |
| download | krb5-ca63be6529dea9fdf0a52e31f40584dd90f3e152.tar.gz krb5-ca63be6529dea9fdf0a52e31f40584dd90f3e152.tar.xz krb5-ca63be6529dea9fdf0a52e31f40584dd90f3e152.zip | |
add replay cache codes
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@460 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/krb5/error_tables/krb5_err.et | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/lib/krb5/error_tables/krb5_err.et b/src/lib/krb5/error_tables/krb5_err.et index 0ea97ac96..e37d81241 100644 --- a/src/lib/krb5/error_tables/krb5_err.et +++ b/src/lib/krb5/error_tables/krb5_err.et @@ -185,4 +185,23 @@ error_code KRB5_PROG_SUMTYPE_NOSUPP, "Program lacks support for checksum type" error_code KRB5_REALM_UNKNOWN, "Cannot find KDC for requested realm" error_code KRB5_KDC_UNREACH, "Cannot contact any KDC for requested realm" error_code KRB5_NO_LOCALNAME, "No local name found for principal name" + +# some of these should be combined/supplanted by system codes + +error_code KRB5_RC_TYPE_EXISTS, "Replay cache type is already registered" +error_code KRB5_RC_MALLOC, "No more memory to allocate (in replay cache code)" +error_code KRB5_RC_TYPE_NOTFOUND, "Replay cache type is unknown" +error_code KRB5_RC_UNKNOWN, "Generic unknown RC error" +error_code KRB5_RC_REPLAY, "Message is a replay" +error_code KRB5_RC_IO, "Replay I/O operation failed XXX" +error_code KRB5_RC_NOIO, "Replay cache type does not support non-volatile storage" +error_code KRB5_RC_PARSE, "Replay cache name parse/format error" + +error_code KRB5_RC_IO_EOF, "End-of-file on replay cache I/O" +error_code KRB5_RC_IO_MALLOC, "No more memory to allocate (in replay cache I/O code)" +error_code KRB5_RC_IO_PERM, "Permission denied in replay cache code" +error_code KRB5_RC_IO_IO, "I/O error in replay cache i/o code" +error_code KRB5_RC_IO_UNKNOWN, "Generic unknown RC/IO error" +error_code KRB5_RC_IO_SPACE, "Insufficient system space to store replay information" + end |
