]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/console/console_conf.h
- Use different share mode when opening files on WinMe/98/95 since
[bacula/bacula] / bacula / src / console / console_conf.h
index e50e2e6f77dc9951bed5bc4f3458f0311c1f619a..55e5c87c58d763c930457561a653813136802acb 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 {
-   RES   hdr;
-   char *rc_file;                     /* startup file */
-   char *hist_file;                   /* command history file */
-   char *ssl_certs;                   /* certificates directory */
+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 {
-   RES   hdr;
-   int   DIRport;                     /* UA server port */
-   char *address;                     /* UA server address */
-   char *password;                    /* UA server password */
-   int  enable_ssl;                   /* Use SSL */
+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;