]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/console/console_conf.h
First cut Console ACLs
[bacula/bacula] / bacula / src / console / console_conf.h
index 04fdc7b85f54eb220da26b3b3100d34a032a1ca8..0b9d52962c032b27ae39983e94acc62376b2e17b 100644 (file)
@@ -2,6 +2,8 @@
  * Bacula User Agent specific configuration and defines
  *
  *     Kern Sibbald, Sep MM
+ *
+ *     Version $Id$
  */
 
 /*
@@ -9,7 +11,8 @@
  */
 #define R_FIRST                       1001
 
-#define R_DIRECTOR                    1001
+#define R_CONSOLE                     1001
+#define R_DIRECTOR                    1002
 
 #define R_LAST                        R_DIRECTOR
 
 
 
 /* Definition of the contents of each Resource */
+
+/* Console "globals" */
+struct s_res_con {
+   RES   hdr;
+   char *rc_file;                     /* startup file */
+   char *hist_file;                   /* command history file */
+   int require_ssl;                   /* Require SSL on all connections */
+   char *password;                    /* UA server password */
+};
+typedef struct s_res_con CONRES;
+
+/* Director */
 struct s_res_dir {
    RES   hdr;
    int   DIRport;                     /* UA server port */
    char *address;                     /* UA server address */
    char *password;                    /* UA server password */
+   int  enable_ssl;                   /* Use SSL */
 };
 typedef struct s_res_dir DIRRES;
 
@@ -38,6 +54,7 @@ typedef struct s_res_dir DIRRES;
  */
 union u_res {
    struct s_res_dir     res_dir;
+   struct s_res_con     res_cons;
    RES hdr;
 };