Line data Source code
1 : #include "config.h"
2 : /* Generated from /builds/samba-team/lts-community/samba/third_party/heimdal/lib/gssapi/spnego/negoex_err.et */
3 : /* $Id$ */
4 :
5 : #include <stddef.h>
6 : #include <com_err.h>
7 : #include "negoex_err.h"
8 :
9 : #define N_(x) (x)
10 :
11 : static const char *ngex_error_strings[] = {
12 : /* 000 */ N_("Invalid NegoEx signature"),
13 : /* 001 */ N_("Invalid NegoEx message type"),
14 : /* 002 */ N_("Invalid NegoEx message size"),
15 : /* 003 */ N_("Invalid NegoEx conversation ID"),
16 : /* 004 */ N_("NegoEx authentication scheme not found"),
17 : /* 005 */ N_("Missing NegoEx negotiate message"),
18 : /* 006 */ N_("Missing NegoEx authentication protocol request message"),
19 : /* 007 */ N_("No mutually supported NegoEx authentication schemes"),
20 : /* 008 */ N_("No NegoEx verify key"),
21 : /* 009 */ N_("Unknown NegoEx checksum scheme"),
22 : /* 010 */ N_("Invalid NegoEx checksum"),
23 : /* 011 */ N_("Unsupported critical NegoEx extension"),
24 : /* 012 */ N_("Unsupported NegoEx version"),
25 : /* 013 */ N_("NegoEx message out of sequence"),
26 : NULL
27 : };
28 :
29 : #define num_errors 14
30 :
31 10191 : void initialize_ngex_error_table_r(struct et_list **list)
32 : {
33 10191 : initialize_error_table_r(list, ngex_error_strings, num_errors, ERROR_TABLE_BASE_ngex);
34 10191 : }
35 :
36 0 : void initialize_ngex_error_table(void)
37 : {
38 0 : init_error_table(ngex_error_strings, ERROR_TABLE_BASE_ngex, num_errors);
39 0 : }
|