diff options
| author | Theodore Tso <tytso@mit.edu> | 1993-12-24 22:25:04 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1993-12-24 22:25:04 +0000 |
| commit | b8617b92519f3cafc3a220f0a1307b6eb1e9a145 (patch) | |
| tree | 301f0dda9d642b7f20bec6143614f5c53b242458 | |
| parent | cd54351f182758116041bbdb9f398d8606fc7027 (diff) | |
| download | krb5-b8617b92519f3cafc3a220f0a1307b6eb1e9a145.tar.gz krb5-b8617b92519f3cafc3a220f0a1307b6eb1e9a145.tar.xz krb5-b8617b92519f3cafc3a220f0a1307b6eb1e9a145.zip | |
Fixed lots of bugs; lots of cleanup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3260 dc483132-0cff-0310-8789-dd5450dbe970
| -rw-r--r-- | src/kadmin/server/adm_msgs.c | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/kadmin/server/adm_msgs.c b/src/kadmin/server/adm_msgs.c new file mode 100644 index 000000000..658bc097e --- /dev/null +++ b/src/kadmin/server/adm_msgs.c @@ -0,0 +1,64 @@ +/* + * $Source$ + * $Author$ + * + * Copyright 1988 by the Massachusetts Institute of Technology. + * + * For copying and distribution information, please see the file + * <mit-copyright.h>. + * + * Top-level loop of the Kerberos Version 5 Administration server + */ + +/* + * Sandia National Laboratories also makes no representations about the + * suitability of the modifications, or additions to this software for + * any purpose. It is provided "as is" without express or implied warranty. + */ + +#if !defined(lint) && !defined(SABER) +static char rcsid_adm_server_c[] = +"$Header$"; +#endif /* lint */ + +char *oper_type[] = { + "complete", /* 0 */ + "addition", /* 1 */ + "deletion", /* 2 */ + "change", /* 3 */ + "modification", /* 4 */ + "inquiry" /* 5 */ +}; + +char *ksrvutil_message[] = { + "Service Key Changed", /* 0 */ + "New Key and Version Received" /* 1 */ +}; + +char *kadmind_general_response[] = { + "Success", /* 0 */ + "Service Access Granted" /* 1 */ +}; + +char *kadmind_kpasswd_response[] = { + "Password Changed", /* 0 */ + "Password NOT Changed!" /* 1 */ +}; + +char *kadmind_ksrvutil_response[] = { + "Service Password Change Complete", /* 0 */ + "One or More Service Password Change(s) Failed!", /* 1 */ + "Database Update Failure - Possible Catastrophe!!" /* 2 */ +}; + +char *kadmind_kadmin_response[] = { + "Administrative Service Completed", /* 0 */ + "Principal Unknown!", /* 1 */ + "Principal Already Exists!", /* 2 */ + "Allocation Failure!", /* 3 */ + "Password Failure!", /* 4 */ + "Protocol Failure!", /* 5 */ + "Security Failure!", /* 6 */ + "Admin Client Not in ACL List!", /* 7 */ + "Database Update Failure - Possible Catastrophe!!" /* 8 */ +}; |
