]> 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 b12153138c2f478e5f3d0a1ca11746501fe985b3..0b9d52962c032b27ae39983e94acc62376b2e17b 100644 (file)
 /* Definition of the contents of each Resource */
 
 /* Console "globals" */
-struct s_res_cons {
+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_cons CONSRES;
+typedef struct s_res_con CONRES;
 
 /* Director */
 struct s_res_dir {
@@ -42,6 +44,7 @@ struct s_res_dir {
    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;
 
@@ -51,7 +54,7 @@ typedef struct s_res_dir DIRRES;
  */
 union u_res {
    struct s_res_dir     res_dir;
-   struct s_res_cons    res_cons;
+   struct s_res_con     res_cons;
    RES hdr;
 };