new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / config / dbd-config.h
old mode 100755 (executable)
new mode 100644 (file)
index 786561f..f24653f
@@ -1,23 +1,17 @@
-/* @(#) $Id: dbd-config.h,v 1.9 2009/06/24 17:06:25 dcid Exp $ */
-
 /* Copyright (C) 2009 Trend Micro Inc.
  * All right reserved.
  *
  * This program is a free software; you can redistribute it
  * and/or modify it under the terms of the GNU General Public
- * License (version 3) as published by the FSF - Free Software
+ * License (version 2) as published by the FSF - Free Software
  * Foundation
  */
 
-
 #ifndef _DBDCONFIG__H
-#define _DBDONFIG__H
-
+#define _DBDCONFIG__H
 
 /* Database config structure */
-typedef struct _DBConfig
-{
+typedef struct _DBConfig {
     unsigned int db_type;
     unsigned int alert_id;
     unsigned int server_id;
@@ -30,15 +24,15 @@ typedef struct _DBConfig
     char *pass;
     char *db;
     char *sock;
-    
+
     void *conn;
-    void *location_hash;
+    OSHash *location_hash;
 
     char **includes;
-}DBConfig;
-
+} DBConfig;
 
 #define MYSQLDB 0x002
 #define POSTGDB 0x004
 
-#endif
+#endif /* _DBDCONFIG__H */
+