obrisane nepotrebne datoteke od zadnjeg builda
[ossec-hids.git] / src / client-agent / event-forward.c
old mode 100755 (executable)
new mode 100644 (file)
index 8cafd1c..633c62f
@@ -1,44 +1,29 @@
-/* @(#) $Id: event-forward.c,v 1.14 2009/06/24 17:06:24 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
  */
 
-/* Part of the OSSEC HIDS
- * Available at http://www.ossec.net/hids/
- */
-
-
 #include "shared.h"
 #include "agentd.h"
-
 #include "os_net/os_net.h"
-
 #include "sec.h"
 
 
-
-/* Receives a message locally on the agent and forwards to the
- * manager.
- */
+/* Receive a message locally on the agent and forward it to the manager */
 void *EventForward()
 {
-    int recv_b;
-    char msg[OS_MAXSTR +1];
-
+    ssize_t recv_b;
+    char msg[OS_MAXSTR + 1];
 
-    /* Initializing variables */
+    /* Initialize variables */
     msg[0] = '\0';
     msg[OS_MAXSTR] = '\0';
 
-
-    while((recv_b = recv(logr->m_queue, msg, OS_MAXSTR, MSG_DONTWAIT)) > 0)
-    {
+    while ((recv_b = recv(agt->m_queue, msg, OS_MAXSTR, MSG_DONTWAIT)) > 0) {
         msg[recv_b] = '\0';
 
         send_msg(0, msg);
@@ -46,9 +31,6 @@ void *EventForward()
         run_notify();
     }
 
-    return(NULL);
+    return (NULL);
 }
 
-
-
-/* EOF */