]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/qt-console/bat_conf.h
Update
[bacula/bacula] / bacula / src / qt-console / bat_conf.h
1 /*
2  * Bacula Adminstration Tool (bat) 
3  *
4  *     Kern Sibbald, March 2002
5  *
6  *     Version $Id$
7  */
8 /*
9    Bacula® - The Network Backup Solution
10
11    Copyright (C) 2002-2006 Free Software Foundation Europe e.V.
12
13    The main author of Bacula is Kern Sibbald, with contributions from
14    many others, a complete list can be found in the file AUTHORS.
15    This program is Free Software; you can redistribute it and/or
16    modify it under the terms of version two of the GNU General Public
17    License as published by the Free Software Foundation plus additions
18    that are listed in the file LICENSE.
19
20    This program is distributed in the hope that it will be useful, but
21    WITHOUT ANY WARRANTY; without even the implied warranty of
22    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23    General Public License for more details.
24
25    You should have received a copy of the GNU General Public License
26    along with this program; if not, write to the Free Software
27    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
28    02110-1301, USA.
29
30    Bacula® is a registered trademark of John Walker.
31    The licensor of Bacula is the Free Software Foundation Europe
32    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
33    Switzerland, email:ftf@fsfeurope.org.
34 */
35
36 #ifndef _BAT_CONF_H_
37 #define _BAT_CONF_H_
38
39 /*
40  * Resource codes -- they must be sequential for indexing
41  */
42
43 enum {
44    R_DIRECTOR = 1001,
45    R_CONSOLE,
46    R_CONSOLE_FONT,
47    R_FIRST = R_DIRECTOR,
48    R_LAST = R_CONSOLE_FONT            /* Keep this updated */
49 };
50
51 /*
52  * Some resource attributes
53  */
54 enum {
55    R_NAME = 1020,
56    R_ADDRESS,
57    R_PASSWORD,
58    R_TYPE,
59    R_BACKUP
60 };
61
62
63 /* Definition of the contents of each Resource */
64 struct DIRRES {
65    RES   hdr;
66    int   DIRport;                     /* UA server port */
67    char *address;                     /* UA server address */
68    char *password;                    /* UA server password */
69    int tls_enable;                    /* Enable TLS */
70    int tls_require;                   /* Require TLS */
71    char *tls_ca_certfile;             /* TLS CA Certificate File */
72    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
73    char *tls_certfile;                /* TLS Client Certificate File */
74    char *tls_keyfile;                 /* TLS Client Key File */
75
76    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
77
78    /* Methods */
79    char *name() const;
80 };
81
82 inline char *DIRRES::name() const { return hdr.name; }
83
84 struct CONFONTRES {
85    RES   hdr;
86    char *fontface;                    /* Console Font specification */
87    int require_ssl;                   /* Require SSL on all connections */
88 };
89
90 struct CONRES {
91    RES   hdr;
92    char *password;                    /* UA server password */
93    int tls_enable;                    /* Enable TLS on all connections */
94    int tls_require;                   /* Require TLS on all connections */
95    char *tls_ca_certfile;             /* TLS CA Certificate File */
96    char *tls_ca_certdir;              /* TLS CA Certificate Directory */
97    char *tls_certfile;                /* TLS Client Certificate File */
98    char *tls_keyfile;                 /* TLS Client Key File */
99
100    TLS_CONTEXT *tls_ctx;              /* Shared TLS Context */
101 };
102
103
104 /* Define the Union of all the above
105  * resource structure definitions.
106  */
107 union u_res {
108    DIRRES dir_res;
109    CONRES con_res;
110    CONFONTRES con_font;
111    RES hdr;
112 };
113
114 typedef union u_res URES;
115
116 #endif /* _BAT_CONF_H_ */