Merge commit 'v2.5.1'
[ossec-hids.git] / src / logcollector / logcollector.h
index 143bcac..6117b64 100755 (executable)
@@ -1,11 +1,11 @@
-/* @(#) $Id: logcollector.h,v 1.28 2009/11/03 21:07:32 dcid Exp $ */
+/* @(#) $Id$ */
 
 /* 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
  */
 
@@ -57,6 +57,9 @@ void *read_mssql_log(int pos, int *rc, int drop_it);
 /* Read postgresql log format */
 void *read_postgresql_log(int pos, int *rc, int drop_it);
 
+/* read multi line logs. */
+void *read_multiline(int pos, int *rc, int drop_it);
+
 /* Read DJB multilog format */
 /* Initializes multilog. */
 int init_djbmultilog(int pos);
@@ -65,6 +68,7 @@ void *read_djbmultilog(int pos, int *rc, int drop_it);
 
 /* Read events from output of command */
 void *read_command(int pos, int *rc, int drop_it);
+void *read_fullcommand(int pos, int *rc, int drop_it);
 
 
 #ifdef WIN32