Imported Upstream version 2.5.1
[debian/amanda] / client-src / clientconf.h
1 /*
2  * Amanda, The Advanced Maryland Automatic Network Disk Archiver
3  * Copyright (c) 1991-2000 University of Maryland at College Park
4  * All Rights Reserved.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and its
7  * documentation for any purpose is hereby granted without fee, provided that
8  * the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the name of U.M. not be used in advertising or
11  * publicity pertaining to distribution of the software without specific,
12  * written prior permission.  U.M. makes no representations about the
13  * suitability of this software for any purpose.  It is provided "as is"
14  * without express or implied warranty.
15  *
16  * U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
18  * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20  * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21  * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22  *
23  * Author: James da Silva, Systems Design and Analysis Group
24  *                         Computer Science Department
25  *                         University of Maryland at College Park
26  */
27 /*
28  * $Id: clientconf.h,v 1.9 2006/07/25 19:06:46 martinea Exp $
29  *
30  * interface for client config file reading code
31  */
32 #ifndef CLIENTCONF_H
33 #define CLIENTCONF_H
34
35 #include "sl.h"
36
37 #define CLIENTCONFFILE_NAME "client.conf"
38
39 typedef enum conf_e {
40     CLN_CONF,
41     CLN_INDEX_SERVER,
42     CLN_TAPE_SERVER,
43     CLN_TAPEDEV,
44     CLN_AUTH,
45     CLN_SSH_KEYS,
46     CLN_AMANDAD_PATH,
47     CLN_CLIENT_USERNAME,
48     CLN_GNUTAR_LIST_DIR,
49     CLN_AMANDATES,
50     CLN_CLN
51 } cconfparm_t;
52
53 extern char *config_name;
54 extern char *config_dir;
55
56 void parse_client_conf(int, char **, int *, char ***);
57 int  add_client_conf(cconfparm_t parm, char *value);
58 void report_bad_client_arg(void);
59 int read_clientconf(char *filename);
60 int client_getconf_seen(cconfparm_t parameter);
61 int client_getconf_boolean(cconfparm_t parameter);
62 int client_getconf_int(cconfparm_t parameter);
63 off_t client_getconf_am64(cconfparm_t parameter);
64 double client_getconf_real(cconfparm_t parameter);
65 char *client_getconf_str(cconfparm_t parameter);
66 char *client_getconf_byname(char *confname);
67
68 /* this is in securityconf.h */
69 char *generic_client_get_security_conf(char *, void *);
70 #endif /* ! CONFFILE_H */