]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/console/console_conf.h
Update doc
[bacula/bacula] / bacula / src / console / console_conf.h
index 7326b55bfed83b8b29a61b1c967829cc4ff954c2..852b24741c52d18972d31953af02f7548b04632b 100644 (file)
@@ -9,52 +9,52 @@
 /*
  * Resource codes -- they must be sequential for indexing   
  */
-#define R_FIRST                      1001
 
-#define R_CONSOLE                    1001
-#define R_DIRECTOR                   1002
-
-#define R_LAST                       R_DIRECTOR
+enum {
+   R_CONSOLE   = 1001,
+   R_DIRECTOR,
+   R_FIRST     = R_CONSOLE,
+   R_LAST      = R_DIRECTOR          /* Keep this updated */
+};
 
 /*
  * Some resource attributes
  */
-#define R_NAME                       1020
-#define R_ADDRESS                    1021
-#define R_PASSWORD                   1022
-#define R_TYPE                       1023
-#define R_BACKUP                     1024
+enum {
+   R_NAME     = 1020,
+   R_ADDRESS,
+   R_PASSWORD,
+   R_TYPE,
+   R_BACKUP,
+};
 
 
 /* Definition of the contents of each Resource */
 
 /* Console "globals" */
-struct s_res_cons {
+struct CONRES {
    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;
 
 /* Director */
-struct s_res_dir {
+struct DIRRES {
    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;
 
 
 /* Define the Union of all the above
  * resource structure definitions.
  */
-union u_res {
-   struct s_res_dir    res_dir;
-   struct s_res_cons   res_cons;
+union URES {
+   DIRRES res_dir;
+   CONRES res_cons;
    RES hdr;
 };
-
-typedef union u_res URES;