lib/krb5: krb5_init_creds_set_service fail if set_realm fails
[heimdal.git] / lib / krb5 / kx509_err.et
blob0be3907f15e0d111114133ac628f3d4284f8a6cf
2 # Error messages for the krb5 library
4 # This might look like a com_err file, but is not
7 # RFC6171 says:
9 #   +------------+-----------------------------+------------------------+
10 #   | error-code | Condition                   | Example                |
11 #   +------------+-----------------------------+------------------------+
12 #   | 1          | Permanent problem with      | Incompatible version   |
13 #   |            | client request              |                        |
14 #   | 2          | Solvable problem with       | Expired Kerberos       |
15 #   |            | client request              | credentials            |
16 #   | 3          | Temporary problem with      | Packet loss            |
17 #   |            | client request              |                        |
18 #   | 4          | Permanent problem with the  | Internal               |
19 #   |            | server                      | misconfiguration       |
20 #   | 5          | Temporary problem with the  | Server overloaded      |
21 #   |            | server                      |                        |
22 #   +------------+-----------------------------+------------------------+
24 # Error 3 makes no sense on the wire, and in the library it only makes sense as
25 # a timeout, so we'll name it KX509_ERR_TIMEOUT.
27 # Error table names must be no more than four characters...
28 error_table kx59
30 prefix KX509_ERR
32 error_code NONE,                "Kx509 success"
33 error_code CLNT_FATAL,          "Kx509 request error, possibly unsupported version"
34 error_code CLNT_SOLVABLE,       "Kx509 request error such as expired credentials"
35 error_code TIMEOUT,             "Kx509 request timed out"
36 error_code SRV_FATAL,           "Permanent server problem"
37 error_code SRV_OVERLOADED,      "Kx509 server is overloaded"
39 end