X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fconfig%2Fremote-config.h;h=48048171d9d79a72d78b2521c1f672b7294baa43;hb=HEAD;hp=a04307893179a615e67122d90e2ee9381c497e34;hpb=301048b51990573e58a30dc4a5bb4ec285cad554;p=ossec-hids.git diff --git a/src/config/remote-config.h b/src/config/remote-config.h old mode 100755 new mode 100644 index a043078..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,32 +7,31 @@ * Foundation */ - #ifndef __CLOGREMOTE_H - #define __CLOGREMOTE_H -#define SYSLOG_CONN 1 +#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; - socklen_t peer_size; -}remoted; + OSNetInfo *netinfo; + socklen_t peer_size; +} remoted; + +#endif /* __CLOGREMOTE_H */ -#endif