X-Git-Url: http://ftp.carnet.hr/pub/carnet-debian/scm?a=blobdiff_plain;f=src%2Fclient-agent%2Fevent-forward.c;h=633c62f81aad10cd3d044a052ada90564710fab1;hb=HEAD;hp=8cafd1ce052d4610d970a1d5ff40fc4f2975d52e;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;p=ossec-hids.git diff --git a/src/client-agent/event-forward.c b/src/client-agent/event-forward.c old mode 100755 new mode 100644 index 8cafd1c..633c62f --- a/src/client-agent/event-forward.c +++ b/src/client-agent/event-forward.c @@ -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 */