X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=bacula%2Fsrc%2Fqt-console%2Fbat_conf.h;h=d50f0ce3bbd254f3953174968553463bb34b2d19;hb=f4dd9275232eb38dd50a832c164bb8200eb98159;hp=ec4c9431b9118b703c9f64ded04b417d81a67f89;hpb=3ad7bd4bdd5d685574c6c4985c5512ec5db6d4d3;p=bacula%2Fbacula diff --git a/bacula/src/qt-console/bat_conf.h b/bacula/src/qt-console/bat_conf.h index ec4c9431b9..d50f0ce3bb 100644 --- a/bacula/src/qt-console/bat_conf.h +++ b/bacula/src/qt-console/bat_conf.h @@ -1,21 +1,14 @@ -/* - * Bacula Adminstration Tool (bat) - * - * Kern Sibbald, March 2002 - * - * Version $Id$ - */ /* Bacula® - The Network Backup Solution - Copyright (C) 2002-2006 Free Software Foundation Europe e.V. + Copyright (C) 2002-2007 Free Software Foundation Europe e.V. The main author of Bacula is Kern Sibbald, with contributions from many others, a complete list can be found in the file AUTHORS. This program is Free Software; you can redistribute it and/or modify it under the terms of version two of the GNU General Public - License as published by the Free Software Foundation plus additions - that are listed in the file LICENSE. + License as published by the Free Software Foundation and included + in the file LICENSE. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -27,11 +20,18 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. - Bacula® is a registered trademark of John Walker. + Bacula® is a registered trademark of Kern Sibbald. The licensor of Bacula is the Free Software Foundation Europe (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich, Switzerland, email:ftf@fsfeurope.org. */ +/* + * Bacula Adminstration Tool (bat) + * + * Kern Sibbald, March 2002 + * + * Version $Id$ + */ #ifndef _BAT_CONF_H_ #define _BAT_CONF_H_ @@ -61,40 +61,56 @@ enum { /* Definition of the contents of each Resource */ -struct DIRRES { +class DIRRES { +public: RES hdr; - int DIRport; /* UA server port */ + uint32_t DIRport; /* UA server port */ char *address; /* UA server address */ char *password; /* UA server password */ - int tls_enable; /* Enable TLS */ - int tls_require; /* Require TLS */ + bool tls_authenticate; /* Authenticate with tls */ + bool tls_enable; /* Enable TLS */ + bool tls_require; /* Require TLS */ char *tls_ca_certfile; /* TLS CA Certificate File */ char *tls_ca_certdir; /* TLS CA Certificate Directory */ char *tls_certfile; /* TLS Client Certificate File */ char *tls_keyfile; /* TLS Client Key File */ + utime_t heartbeat_interval; /* Dir heartbeat interval */ TLS_CONTEXT *tls_ctx; /* Shared TLS Context */ + + /* Methods */ + char *name() const; }; +inline char *DIRRES::name() const { return hdr.name; } + + struct CONFONTRES { RES hdr; char *fontface; /* Console Font specification */ - int require_ssl; /* Require SSL on all connections */ }; -struct CONRES { +class CONRES { +public: RES hdr; char *password; /* UA server password */ - int tls_enable; /* Enable TLS on all connections */ - int tls_require; /* Require TLS on all connections */ + bool tls_authenticate; /* Authenticate with tls */ + bool tls_enable; /* Enable TLS on all connections */ + bool tls_require; /* Require TLS on all connections */ char *tls_ca_certfile; /* TLS CA Certificate File */ char *tls_ca_certdir; /* TLS CA Certificate Directory */ char *tls_certfile; /* TLS Client Certificate File */ char *tls_keyfile; /* TLS Client Key File */ + utime_t heartbeat_interval; /* Cons heartbeat interval */ TLS_CONTEXT *tls_ctx; /* Shared TLS Context */ + + /* Methods */ + char *name() const; }; +inline char *CONRES::name() const { return hdr.name; } + /* Define the Union of all the above * resource structure definitions. @@ -108,4 +124,8 @@ union u_res { typedef union u_res URES; +#define GetConsoleResWithName(x) ((CONRES *)GetResWithName(R_CONSOLE, (x))) +#define GetDirResWithName(x) ((DIRRES *)GetResWithName(R_DIRECTOR, (x))) + + #endif /* _BAT_CONF_H_ */