X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?p=ossec-hids.git;a=blobdiff_plain;f=src%2Fconfig%2Fremote-config.h;fp=src%2Fconfig%2Fremote-config.h;h=48048171d9d79a72d78b2521c1f672b7294baa43;hp=7896830c72e69add4326d46c8a0a303a95704b7a;hb=3f728675941dc69d4e544d3a880a56240a6e394a;hpb=927951d1c1ad45ba9e7325f07d996154a91c911b diff --git a/src/config/remote-config.h b/src/config/remote-config.h old mode 100755 new mode 100644 index 7896830..4804817 --- a/src/config/remote-config.h +++ b/src/config/remote-config.h @@ -1,5 +1,3 @@ -/* $OSSEC, remote-config.h, v0.3, 2005/02/09, Daniel B. Cid$ */ - /* Copyright (C) 2009 Trend Micro Inc. * All right reserved. * @@ -9,33 +7,31 @@ * Foundation */ - #ifndef __CLOGREMOTE_H - #define __CLOGREMOTE_H #define SYSLOG_CONN 1 #define SECURE_CONN 2 -#define UDP_PROTO 6 -#define TCP_PROTO 17 #include "shared.h" +#include "os_net/os_net.h" /* socklen_t header */ -typedef struct _remoted -{ +typedef struct _remoted { int *proto; - int *port; + char **port; int *conn; int *ipv6; char **lip; - os_ip **allowips; - os_ip **denyips; + os_ip **allowips; + os_ip **denyips; int m_queue; int sock; + OSNetInfo *netinfo; socklen_t peer_size; -}remoted; +} remoted; + +#endif /* __CLOGREMOTE_H */ -#endif