new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / os_execd / execd.h
old mode 100755 (executable)
new mode 100644 (file)
index 3eedd30..6d2f263
@@ -1,6 +1,3 @@
-/* @(#) $Id: ./src/os_execd/execd.h, 2011/09/08 dcid Exp $
- */
-
 /* Copyright (C) 2009 Trend Micro Inc.
  * All rights reserved.
  *
@@ -8,12 +5,8 @@
  * and/or modify it under the terms of the GNU General Public
  * License (version 2) as published by the FSF - Free Software
  * Foundation.
- *
- * More details at the LICENSE file included with OSSEC or
- * online at http://www.ossec.net/en/licensing.html .
  */
 
-
 #ifndef _EXECD_H
 #define _EXECD_H
 
 #define ARGV0 "ossec-execd"
 #endif
 
-
 /* Add/delete arguments for the commands */
 #define ADD_ENTRY       "add"
 #define DELETE_ENTRY    "delete"
 
-
 /* Maximum number of active responses active */
 #define MAX_AR      64
 
-
 /* Maximum number of command arguments */
 #define MAX_ARGS    32
 
-
 /* Execd select timeout -- in seconds */
 #define EXECD_TIMEOUT   90
 
-
+extern int repeated_offenders_timeout[];
 
 /** Function prototypes **/
 
-void ExecdStart(int queue);
-
 void WinExecdRun(char *exec_msg);
-
-int ReadExecConfig();
-
-char *GetCommandbyName(char *name, int *timeout);
-
-void ExecCmd(char **cmd);
-
+int ReadExecConfig(void);
+char *GetCommandbyName(const char *name, int *timeout) __attribute__((nonnull));
+void ExecCmd(char *const *cmd) __attribute__((nonnull));
 void ExecCmd_Win32(char *cmd);
-
-int ExecdConfig(char * cfgfile);
-
-int WinExecd_Start();
-
+int ExecdConfig(const char *cfgfile) __attribute__((nonnull));
+int WinExecd_Start(void);
 void WinTimeoutRun(int timeout);
 
-void FreeTimeoutEntry(void *timeout_entry);
+/* Timeout data structure */
+typedef struct _timeout_data {
+    time_t time_of_addition;
+    int time_to_block;
+    char **command;
+} timeout_data;
 
-
-
-
-#define _EXECD_H
+void FreeTimeoutEntry(timeout_data *timeout_entry);
 
 #endif
+