1 /* 2 * CDDL HEADER START 3 * 4 * The contents of this file are subject to the terms of the 5 * Common Development and Distribution License, Version 1.0 only 6 * (the "License"). You may not use this file except in compliance 7 * with the License. 8 * 9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10 * or http://www.opensolaris.org/os/licensing. 11 * See the License for the specific language governing permissions 12 * and limitations under the License. 13 * 14 * When distributing Covered Code, include this CDDL HEADER in each 15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16 * If applicable, add the following below this CDDL HEADER, with the 17 * fields enclosed by brackets "[]" replaced with your own identifying 18 * information: Portions Copyright [yyyy] [name of copyright owner] 19 * 20 * CDDL HEADER END 21 * 22 * Copyright 1997 Sun Microsystems, Inc. All Rights Reserved. 23 * Use is subject to license terms. 24 */ 25 26 /* 27 * HISTORY 28 * 5-13-96 Jerry Yeung support security file 29 */ 30 31 #ifndef _CONFIG_H_ 32 #define _CONFIG_H_ 33 34 #pragma ident "%Z%%M% %I% %E% SMI" 35 36 /***** GLOBAL VARIABLES *****/ 37 38 extern char config_file_4_res[]; 39 extern char default_sec_config_file[]; 40 41 42 /***** GLOBAL FUNCTIONS *****/ 43 44 extern int config_init(char *dirname); 45 46 /**** SNMP security(5-13-96) ***/ 47 extern int sec_config_init(char *filename); 48 49 50 extern int personal_file_reading(char* dirname, char* filename, time_t *file_time); 51 extern int resource_update(char *filename); 52 extern int read_acl(); 53 #endif 54 55