1 #pragma ident	"%Z%%M%	%I%	%E% SMI"
2 /*
3  * lib/krb5/os/osconfig.c
4  *
5  * Copyright 1990 by the Massachusetts Institute of Technology.
6  * All Rights Reserved.
7  *
8  * Export of this software from the United States of America may
9  *   require a specific license from the United States Government.
10  *   It is the responsibility of any person or organization contemplating
11  *   export to obtain such a license before exporting.
12  *
13  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
14  * distribute this software and its documentation for any purpose and
15  * without fee is hereby granted, provided that the above copyright
16  * notice appear in all copies and that both that copyright notice and
17  * this permission notice appear in supporting documentation, and that
18  * the name of M.I.T. not be used in advertising or publicity pertaining
19  * to distribution of the software without specific, written prior
20  * permission.  M.I.T. makes no representations about the suitability of
21  * this software for any purpose.  It is provided "as is" without express
22  * or implied warranty.
23  *
24  *
25  * Definition of default configuration parameters.
26  *
27  * ***** WARNING *****
28  * These globals are internal library interfaces and are not
29  * supported.  Do not use them in any production code, as they will be
30  * removed from the library in the future.
31  */
32 
33 #include "k5-int.h"
34 
35 char *krb5_defkeyname  = DEFAULT_KEYTAB_NAME;
36 
37 int krb5_max_dgram_size = MAX_DGRAM_SIZE;
38 int krb5_max_skdc_timeout = MAX_SKDC_TIMEOUT;
39 int krb5_skdc_timeout_shift = SKDC_TIMEOUT_SHIFT;
40 int krb5_skdc_timeout_1 = SKDC_TIMEOUT_1;
41 
42 char *krb5_default_pwd_prompt1 = DEFAULT_PWD_STRING1;
43 char *krb5_default_pwd_prompt2 = DEFAULT_PWD_STRING2;
44 
45