X-Git-Url: http://ftp.carnet.hr/pub/carnet-debian/scm?a=blobdiff_plain;f=src%2Fclient-agent%2Fsendmsg.c;h=454c2e71499c8604ef4e5125f2a2a4b07288f8d7;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hp=438e848198a796bf317cc79eab794975409ff8fa;hpb=301048b51990573e58a30dc4a5bb4ec285cad554;p=ossec-hids.git diff --git a/src/client-agent/sendmsg.c b/src/client-agent/sendmsg.c old mode 100755 new mode 100644 index 438e848..454c2e7 --- a/src/client-agent/sendmsg.c +++ b/src/client-agent/sendmsg.c @@ -1,5 +1,3 @@ -/* @(#) $Id$ */ - /* Copyright (C) 2009 Trend Micro Inc. * All rights reserved. * @@ -9,34 +7,30 @@ * Foundation */ - #include "shared.h" #include "agentd.h" - #include "os_net/os_net.h" - -/* Sends a message to the server */ -int send_msg(int agentid, char *msg) + +/* Send a message to the server */ +int send_msg(int agentid, const char *msg) { - int msg_size; - char crypt_msg[OS_MAXSTR +1]; + size_t msg_size; + char crypt_msg[OS_MAXSTR + 1]; msg_size = CreateSecMSG(&keys, msg, crypt_msg, agentid); - if(msg_size == 0) - { - merror(SEC_ERROR,ARGV0); - return(-1); + if (msg_size == 0) { + merror(SEC_ERROR, ARGV0); + return (-1); } /* Send msg_size of crypt_msg */ - if(OS_SendUDPbySize(logr->sock, msg_size, crypt_msg) < 0) - { - merror(SEND_ERROR,ARGV0, "server"); + if (OS_SendUDPbySize(agt->sock, msg_size, crypt_msg) < 0) { + merror(SEND_ERROR, ARGV0, "server"); sleep(1); - return(-1); + return (-1); } - return(0); + return (0); }