10Sstevel@tonic-gate /* 20Sstevel@tonic-gate * lib/krb5/os/osconfig.c 30Sstevel@tonic-gate * 40Sstevel@tonic-gate * Copyright 1990 by the Massachusetts Institute of Technology. 50Sstevel@tonic-gate * All Rights Reserved. 60Sstevel@tonic-gate * 70Sstevel@tonic-gate * Export of this software from the United States of America may 80Sstevel@tonic-gate * require a specific license from the United States Government. 90Sstevel@tonic-gate * It is the responsibility of any person or organization contemplating 100Sstevel@tonic-gate * export to obtain such a license before exporting. 110Sstevel@tonic-gate * 120Sstevel@tonic-gate * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and 130Sstevel@tonic-gate * distribute this software and its documentation for any purpose and 140Sstevel@tonic-gate * without fee is hereby granted, provided that the above copyright 150Sstevel@tonic-gate * notice appear in all copies and that both that copyright notice and 160Sstevel@tonic-gate * this permission notice appear in supporting documentation, and that 170Sstevel@tonic-gate * the name of M.I.T. not be used in advertising or publicity pertaining 180Sstevel@tonic-gate * to distribution of the software without specific, written prior 19*7934SMark.Phalan@Sun.COM * permission. Furthermore if you modify this software you must label 20*7934SMark.Phalan@Sun.COM * your software as modified software and not distribute it in such a 21*7934SMark.Phalan@Sun.COM * fashion that it might be confused with the original M.I.T. software. 22*7934SMark.Phalan@Sun.COM * M.I.T. makes no representations about the suitability of 230Sstevel@tonic-gate * this software for any purpose. It is provided "as is" without express 240Sstevel@tonic-gate * or implied warranty. 250Sstevel@tonic-gate * 260Sstevel@tonic-gate * 270Sstevel@tonic-gate * Definition of default configuration parameters. 280Sstevel@tonic-gate * 290Sstevel@tonic-gate * ***** WARNING ***** 300Sstevel@tonic-gate * These globals are internal library interfaces and are not 310Sstevel@tonic-gate * supported. Do not use them in any production code, as they will be 320Sstevel@tonic-gate * removed from the library in the future. 330Sstevel@tonic-gate */ 340Sstevel@tonic-gate 350Sstevel@tonic-gate #include "k5-int.h" 360Sstevel@tonic-gate 370Sstevel@tonic-gate char *krb5_defkeyname = DEFAULT_KEYTAB_NAME; 380Sstevel@tonic-gate 39781Sgtb unsigned int krb5_max_dgram_size = MAX_DGRAM_SIZE; 40781Sgtb unsigned int krb5_max_skdc_timeout = MAX_SKDC_TIMEOUT; 41781Sgtb unsigned int krb5_skdc_timeout_shift = SKDC_TIMEOUT_SHIFT; 42781Sgtb unsigned int krb5_skdc_timeout_1 = SKDC_TIMEOUT_1; 430Sstevel@tonic-gate 440Sstevel@tonic-gate char *krb5_default_pwd_prompt1 = DEFAULT_PWD_STRING1; 450Sstevel@tonic-gate char *krb5_default_pwd_prompt2 = DEFAULT_PWD_STRING2; 460Sstevel@tonic-gate 47