2N/A/* -*- mode: c; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2N/A/*
2N/A * lib/krb5/os/osconfig.c
2N/A *
2N/A * Copyright 1990 by the Massachusetts Institute of Technology.
2N/A * All Rights Reserved.
2N/A *
2N/A * Export of this software from the United States of America may
2N/A * require a specific license from the United States Government.
2N/A * It is the responsibility of any person or organization contemplating
2N/A * export to obtain such a license before exporting.
2N/A *
2N/A * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
2N/A * distribute this software and its documentation for any purpose and
2N/A * without fee is hereby granted, provided that the above copyright
2N/A * notice appear in all copies and that both that copyright notice and
2N/A * this permission notice appear in supporting documentation, and that
2N/A * the name of M.I.T. not be used in advertising or publicity pertaining
2N/A * to distribution of the software without specific, written prior
2N/A * permission. Furthermore if you modify this software you must label
2N/A * your software as modified software and not distribute it in such a
2N/A * fashion that it might be confused with the original M.I.T. software.
2N/A * M.I.T. makes no representations about the suitability of
2N/A * this software for any purpose. It is provided "as is" without express
2N/A * or implied warranty.
2N/A *
2N/A *
2N/A * Definition of default configuration parameters.
2N/A *
2N/A * ***** WARNING *****
2N/A * These globals are internal library interfaces and are not
2N/A * supported. Do not use them in any production code, as they will be
2N/A * removed from the library in the future.
2N/A */
2N/A
2N/A#include "k5-int.h"
2N/A
2N/Achar *krb5_defkeyname = DEFAULT_KEYTAB_NAME;
2N/A
2N/Aunsigned int krb5_max_dgram_size = MAX_DGRAM_SIZE;
2N/Aunsigned int krb5_max_skdc_timeout = MAX_SKDC_TIMEOUT;
2N/Aunsigned int krb5_skdc_timeout_shift = SKDC_TIMEOUT_SHIFT;
2N/Aunsigned int krb5_skdc_timeout_1 = SKDC_TIMEOUT_1;
2N/A
2N/Aconst char *krb5_default_pwd_prompt1 = DEFAULT_PWD_STRING1;
2N/Aconst char *krb5_default_pwd_prompt2 = DEFAULT_PWD_STRING2;